ports/56859: [patch] minor fixes for ports/Tools/portbuild/scripts/processlogs

Mark Linimon linimon at lonesome.com
Sun Sep 14 08:10:16 UTC 2003


>Number:         56859
>Category:       ports
>Synopsis:       [patch] minor fixes for ports/Tools/portbuild/scripts/processlogs
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Sep 14 01:10:13 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Mark Linimon
>Release:        FreeBSD 4.9-PRERELEASE i386
>Organization:
Lonesome Dove Computing Services
>Environment:
System: FreeBSD lonesome.lonesome.com 4.9-PRERELEASE FreeBSD 4.9-PRERELEASE #0: Fri Sep 5 01:19:33 CDT 2003 linimon at lonesome.lonesome.com:/usr/src/sys/compile/MULTIMEDIA_DEBUG i386
>Description:
	A test for the "mtree" error is obviously incorrect (the grep
	command is missing its -E).  Also, gcc's internal error failure
	message has changed slightly, but we probably still need the
	old one, too.
>How-To-Repeat:
	n/a
>Fix:

--- processlogs.dist	Fri Sep 12 16:16:09 2003
+++ processlogs	Sun Sep 14 02:33:20 2003
@@ -43,6 +43,8 @@
 
     if grep -q 'list of extra files and directories' $1; then
       reason="mtree"; tag="mtree"
+    elif grep -q "See <URL:http://gcc.gnu.org/bugs.html> for instructions." $1; then
+      reason="gcc_bug"; tag="gcc-bug"
     elif grep -q "See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions." $1; then
       reason="gcc_bug"; tag="gcc-bug"
     elif grep -q 'Checksum mismatch' $1; then
@@ -269,7 +271,7 @@
       reason="linker_error"; tag="ld"
     elif grep -qE "make.*(don.t know how to make|fatal errors encountered|No rule to make target|built-in)" $1; then
       reason="makefile"; tag="makefile"
-    elif grep -q "Error: mtree file ./etc/mtree/BSD.local.dist. is missing" $1; then
+    elif grep -qE "Error: mtree file ./etc/mtree/BSD.local.dist. is missing" $1; then
       reason="mtree"; tag="mtree"
     elif grep -qE "cp:.*site_perl: No such file or directory" $1; then
       reason="perl"; tag="perl"
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list