diff options
author | linimon <linimon@FreeBSD.org> | 2010-06-01 03:33:22 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2010-06-01 03:33:22 +0800 |
commit | c3c268cb888aa8e967dcc69db700cd11eb85aef1 (patch) | |
tree | 0a75a623a4843141faa13e38c66ace6ff6010fa5 /Tools | |
parent | 4c10c0cd69760f8ffdadac782adc6831a09cfef9 (diff) | |
download | freebsd-ports-gnome-c3c268cb888aa8e967dcc69db700cd11eb85aef1.tar.gz freebsd-ports-gnome-c3c268cb888aa8e967dcc69db700cd11eb85aef1.tar.zst freebsd-ports-gnome-c3c268cb888aa8e967dcc69db700cd11eb85aef1.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 |