diff options
author | linimon <linimon@FreeBSD.org> | 2007-02-10 14:59:13 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-02-10 14:59:13 +0800 |
commit | 32530ed3023f07da5474c3f92bc55c08795060ca (patch) | |
tree | 689237e9f49dec578937b035ba9b669a0db6b1cb /Tools | |
parent | 3b1a11f024880f613653c2258499db33dcd0d172 (diff) | |
download | freebsd-ports-gnome-32530ed3023f07da5474c3f92bc55c08795060ca.tar.gz freebsd-ports-gnome-32530ed3023f07da5474c3f92bc55c08795060ca.tar.zst freebsd-ports-gnome-32530ed3023f07da5474c3f92bc55c08795060ca.zip |
Append one character to the gcc4 case (missed during cut-and-paste).
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/processonelog | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/processonelog b/Tools/portbuild/scripts/processonelog index 99a3db2a6ede..2b14d5f2bdcb 100755 --- a/Tools/portbuild/scripts/processonelog +++ b/Tools/portbuild/scripts/processonelog @@ -73,7 +73,7 @@ elif bzgrep -qE '(ANSI C.. forbids|is a contravariance violation|changed for new reason="new_compiler_error"; tag="newgcc" elif bzgrep -qE '(syntax error before|ISO C\+\+ forbids|friend declaration|no matching function for call to|.main. must return .int.|invalid conversion from|cannot be used as a macro name as it is an operator in C\+\+|is not a member of type|after previous specification in|no class template named|because worst conversion for the former|better than worst conversion|no match for.*operator|no match for call to|undeclared in namespace|is used as a type, but is not|error: array bound forbidden|error: class definition|error: expected constructor|error: there are no arguments|error:.*cast.*loses precision|ISO C\+\+ does not support)' $1; then reason="bad_C++_code"; tag="badc++" -elif bzgrep -qE 'error: (array type has incomplete element type|extra qualification .* on member|invalid cast from type .* to type|invalid lvalue in (assignment|decrement|increment|unary)|invalid storage class for function|static declaration of.*follows non-static declaration|two or more data types in declaration specifiers|.* was not declared in this scop)' $1; then +elif bzgrep -qE 'error: (array type has incomplete element type|extra qualification .* on member|invalid cast from type .* to type|invalid lvalue in (assignment|decrement|increment|unary)|invalid storage class for function|static declaration of.*follows non-static declaration|two or more data types in declaration specifiers|.* was not declared in this scope)' $1; then reason="gcc4_error"; tag="gcc4" elif bzgrep -qE '(/usr/libexec/elf/ld: cannot find|undefined reference to|cannot open -l.*: No such file)' $1; then reason="linker_error"; tag="ld" |