diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2010-05-31 19:33:22 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2010-05-31 19:33:22 +0000 |
commit | 69105de3df9f4914baf288c0b3ee48d564bbcee6 (patch) | |
tree | a3847c03c13e1de9aa83397d776e49a40c504af7 /Tools | |
parent | 74affe36b5d34b5132cd1f89b5d08529b619aa5f (diff) | |
download | freebsd-ports-69105de3df9f4914baf288c0b3ee48d564bbcee6.zip |
Remove some hardcoding.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/processlogs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Tools/portbuild/scripts/processlogs b/Tools/portbuild/scripts/processlogs index 90d14ef63d41..4f645cd963d7 100755 --- a/Tools/portbuild/scripts/processlogs +++ b/Tools/portbuild/scripts/processlogs @@ -178,7 +178,7 @@ sort .logs/.all | while read line; do test "$9" = "yes" && echo "<font color=\"red\">[B]</font>" >> $of reason="$7" - echo "<a href=\"http://pointyhat.freebsd.org/#$8\">$reason</a>" >> $of + echo "<a href=\"http://$master/#$8\">$reason</a>" >> $of echo "</td>" >> $of date="${10}" @@ -219,7 +219,7 @@ sort -t \| +4 .logs/.all | while read line; do echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason="$7" - echo "<a href=\"http://pointyhat.freebsd.org/#$8\">$reason</a>" >> $of + echo "<a href=\"http://$master/#$8\">$reason</a>" >> $of echo "</td>" >> $of date="${10}" @@ -260,7 +260,7 @@ sort -t \| +5 .logs/.all | while read line; do echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason="$7" - echo "<a href=\"http://pointyhat.freebsd.org/#$8\">$reason</a>" >> $of + echo "<a href=\"http://$master/#$8\">$reason</a>" >> $of echo "</td>" >> $of date="${10}" @@ -293,7 +293,7 @@ sort -t \| +7 .logs/.all | while read line; do echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason="$7" - echo "<a href=\"http://pointyhat.freebsd.org/#$8\">$reason</a>" >> $of + echo "<a href=\"http://$master/#$8\">$reason</a>" >> $of echo "</td>" >> $of echo "<td><a href=\"http://${master}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of @@ -346,7 +346,7 @@ sort -t \| +9 .logs/.all | while read line; do echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason="$7" - echo "<a href=\"http://pointyhat.freebsd.org/#$8\">$reason</a>" >> $of + echo "<a href=\"http://$master/#$8\">$reason</a>" >> $of echo "</td>" >> $of echo "</tr>" >> $of |