diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-07 03:48:05 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-07 03:48:05 +0000 |
commit | 0fdb266659d7cb8d1c7513df6ab66b0ed9749971 (patch) | |
tree | 3fff3690be1e28f2078b3cd2db45102a8a1330e8 | |
parent | 3259ff9364f92538b92ca5d5d8933fdba69e2e6e (diff) | |
download | ATCD-0fdb266659d7cb8d1c7513df6ab66b0ed9749971.tar.gz |
ChangeLogTag: Tue Jul 06 22:47:04 1999 David L. Levine <levine@cs.wustl.edu>
-rw-r--r-- | ChangeLog-99b | 5 | ||||
-rwxr-xr-x | bin/check_build_logs | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b index f96fe8e966a..39ad8a5fa93 100644 --- a/ChangeLog-99b +++ b/ChangeLog-99b @@ -1,3 +1,8 @@ +Tue Jul 06 22:47:04 1999 David L. Levine <levine@cs.wustl.edu> + + * bin/check_build_logs: filter out Purify warning about + non-pic R_SPARC_*. + Tue Jul 06 22:21:12 1999 David L. Levine <levine@cs.wustl.edu> * ace/config-linuxppcr5.h: commented out #define __USE_XOPEN 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; |