summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2001-03-28 23:04:56 +0000
committerSteve Huston <shuston@riverace.com>2001-03-28 23:04:56 +0000
commit703f974d8391b5c217f55f8cae2c441cf65c532e (patch)
treef9f31475396d242f387e9dbbd12423757d4a2634 /bin
parent4e5ad61c25eaf67f1c7cf41529dfe7a5e4ad1171 (diff)
downloadATCD-703f974d8391b5c217f55f8cae2c441cf65c532e.tar.gz
ChangeLogTag:Wed Mar 28 17:45:22 2001 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/make_pretty.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/make_pretty.pl b/bin/make_pretty.pl
index 2ec05fdaed3..37a72e0ad96 100755
--- a/bin/make_pretty.pl
+++ b/bin/make_pretty.pl
@@ -140,7 +140,7 @@ sub is_warning ()
}
# IBM's compilers don't say the word "warning" - check for their code
- return 1 if ($^O eq 'aix' && m/\d+-\d+ \(W\)/);
+ return 1 if ($^O eq 'aix' && m/\d+-\d+:? \(W\)/);
# didn't find anything
return 0;
@@ -182,7 +182,7 @@ sub is_error ()
|| /: fatal:/);
# Again, IBM's compilers speak in code langauge
- return 1 if ($^O eq 'aix' && m/\d+-\d+ \([SI]\)/);
+ return 1 if ($^O eq 'aix' && m/\d+-\d+:? \([SI]\)/);
# didn't find anything
return 0;