diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-09-22 00:58:48 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-09-22 00:58:48 +0000 |
commit | 84768fa69e3a8ad388e483c1710f6a11e3f3e38a (patch) | |
tree | d2a9a6f1366143b0ad3e04723df98307f11bfd26 /Tools/portbuild | |
parent | 1ef91d42b2ce8b28e73cc9f4ea1a71bf1e21b8cc (diff) | |
download | freebsd-ports-84768fa69e3a8ad388e483c1710f6a11e3f3e38a.zip |
Another case for compiler error.
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-x | Tools/portbuild/scripts/processlogs | 2 |
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" |