diff options
author | kris <kris@FreeBSD.org> | 2004-07-14 09:27:26 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-07-14 09:27:26 +0000 |
commit | ac04824b8a0d075c12759c9425b62ff2d3913f54 (patch) | |
tree | b03ceb8d758cfbc8bcf756461c33e4b13fdeda97 /Tools | |
parent | 1aea866d34e13239e1b9004ebba6a61ccce9b96b (diff) | |
download | FreeBSD-ports-ac04824b8a0d075c12759c9425b62ff2d3913f54.zip FreeBSD-ports-ac04824b8a0d075c12759c9425b62ff2d3913f54.tar.gz |
Parse the slightly-different format of the build logs.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/processlogs2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/processlogs2 b/Tools/portbuild/scripts/processlogs2 index d28a042..b069410 100755 --- a/Tools/portbuild/scripts/processlogs2 +++ b/Tools/portbuild/scripts/processlogs2 @@ -45,7 +45,7 @@ else dir=$(sed -n -e '3p' $log.log | awk '{print $4}' | sed -e 's,^/[^/]*/[^/]*/,,') echo -n "<a href=\"http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/$dir\">$dir</a>" >>$of echo -n "</td><td valign=\"top\">" >>$of - maint=$(sed -n -e '4p' $log.log | awk '{print $3}') + maint=$(sed -n -e '3p' $log.log | awk '{print $3}') maints="$maints $maint" echo -n "<a href=\"mailto:$maint\">$maint</a>" >>$of echo "</td><td valign=\"top\">" >>$of |