summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-20 18:12:33 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-20 18:12:33 +0000
commite43bd0980f679b7b4a5994418a4416448dddada3 (patch)
treeec16856fad81e3e56d16b7febd325e281a12f5e1 /bin
parent3e1734386054a8ec54a85ffcd4ba716b51a00cf9 (diff)
downloadATCD-e43bd0980f679b7b4a5994418a4416448dddada3.tar.gz
Fixed typo in regexp
Diffstat (limited to 'bin')
-rwxr-xr-xbin/auto_compile2
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 $_;