Another case for compiler error.

This commit is contained in:
Satoshi Asami 1999-09-22 00:58:48 +00:00
parent 1ef91d42b2
commit 84768fa69e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=21870

View File

@ -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"