summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1999-09-22 00:58:48 +0000
committerSatoshi Asami <asami@FreeBSD.org>1999-09-22 00:58:48 +0000
commit84768fa69e3a8ad388e483c1710f6a11e3f3e38a (patch)
treed2a9a6f1366143b0ad3e04723df98307f11bfd26 /Tools
parentRun chflags if rm -rf of chroot dir fails -- some port may have (diff)
Another case for compiler error.
Notes
Notes: svn path=/head/; revision=21870
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/portbuild/scripts/processlogs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/processlogs b/Tools/portbuild/scripts/processlogs
index f45237664e0e..57085d32958f 100755
--- a/Tools/portbuild/scripts/processlogs
+++ b/Tools/portbuild/scripts/processlogs
@@ -66,7 +66,7 @@ else
fi
elif grep -q "cd: can't cd to" $1; then
reason="NFS"; tag="nfs"
- elif grep -qE '(parse error|too (many|few) arguments to|argument.*doesn.*prototype|undeclared \(first use this function\))' $1; then
+ elif grep -qE '(parse error|too (many|few) arguments to|argument.*doesn.*prototype|conflicting types for|undeclared \(first use in this function\))' $1; then
reason="compiler error"; tag="cc"
elif grep -qE '(undefined reference to|cannot open -l.*: No such file)' $1; then
reason="linker error"; tag="ld"