diff options
Diffstat (limited to 'bin/check_build_logs')
-rwxr-xr-x | bin/check_build_logs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/check_build_logs b/bin/check_build_logs index a0052cd75e6..5548ddc2705 100755 --- a/bin/check_build_logs +++ b/bin/check_build_logs @@ -74,7 +74,7 @@ chdir $log_directory || open (EGREP, "egrep -n \'Error|errors|[^a][Ss]top|No rule to make|\(undefined symb\)|[Ww]arn|not exist|core dumped|: #[0-9]|cxx:\' $log_files |") || die "$0: unable to open egrep\n"; while (<EGREP>) { - push @output, $_ unless /calls, 0 errors/; + push @output, $_ unless /calls, 0 errors$/ || /Found non-pic R_SPARC/; } close EGREP; |