summaryrefslogtreecommitdiff
path: root/t/override-suggest-local.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/override-suggest-local.sh')
-rwxr-xr-xt/override-suggest-local.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/override-suggest-local.sh b/t/override-suggest-local.sh
index 286c8881b..11b7fb96b 100755
--- a/t/override-suggest-local.sh
+++ b/t/override-suggest-local.sh
@@ -17,7 +17,7 @@
# Make sure automake -Woverride suggests using TARGET-local instead
# of TARGET when possible.
-. ./defs || Exit 1
+. ./defs || exit 1
cat > Makefile.am << 'END'
install:
@@ -34,11 +34,11 @@ $ACLOCAL
$AUTOMAKE -Wno-override
AUTOMAKE_fails
# There is no such thing as 'install-local'.
-grep ':.*install-local' stderr && Exit 1
+grep ':.*install-local' stderr && exit 1
grep ':.*installcheck-local' stderr
grep ':.*html-local' stderr
# Make sure overriding *-am targets suggest using *-local, not *-am.
-grep ':.*clean-am-local' stderr && Exit 1
+grep ':.*clean-am-local' stderr && exit 1
grep ':.*clean-local' stderr
: