summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-07 03:48:05 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-07 03:48:05 +0000
commit3b6e32ebe6df9334c1c6039cec10d1efd0ba3493 (patch)
tree3fff3690be1e28f2078b3cd2db45102a8a1330e8 /bin
parent82abb9f0b83168c7a1e2ff223b55b7bf7498dd87 (diff)
downloadATCD-3b6e32ebe6df9334c1c6039cec10d1efd0ba3493.tar.gz
ChangeLogTag: Tue Jul 06 22:47:04 1999 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/check_build_logs2
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;