diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-20 18:12:33 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-20 18:12:33 +0000 |
commit | e43bd0980f679b7b4a5994418a4416448dddada3 (patch) | |
tree | ec16856fad81e3e56d16b7febd325e281a12f5e1 /bin/auto_compile | |
parent | 3e1734386054a8ec54a85ffcd4ba716b51a00cf9 (diff) | |
download | ATCD-e43bd0980f679b7b4a5994418a4416448dddada3.tar.gz |
Fixed typo in regexp
Diffstat (limited to 'bin/auto_compile')
-rwxr-xr-x | bin/auto_compile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/auto_compile b/bin/auto_compile index 1205ecc517a..2133093b127 100755 --- a/bin/auto_compile +++ b/bin/auto_compile @@ -157,7 +157,7 @@ foreach $i (@BUILD_LIST) { || mydie "cannot start make for $i"; $make_errors = 0; while (<MAKE>) { - if (m/^make: \*\*\*/ || m/^make\[[0-9]+\]: \*\*\*) { + if (m/^make: \*\*\*/ || m/^make\[[0-9]+\]: \*\*\*/) { $make_errors = 1; } print LOG $_; |