summaryrefslogtreecommitdiff
path: root/t/cond.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/cond.sh')
-rwxr-xr-xt/cond.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/cond.sh b/t/cond.sh
index f7f0a8c1a..04fb9faa8 100755
--- a/t/cond.sh
+++ b/t/cond.sh
@@ -16,7 +16,7 @@
# Check basic use of conditionals.
-. ./defs || Exit 1
+. ./defs || exit 1
cat >> configure.ac << 'END'
AM_CONDITIONAL([TEST], [true])
@@ -34,8 +34,8 @@ END
$ACLOCAL
$AUTOMAKE
-grep '^TEST_FALSE' Makefile.in && Exit 1
-grep '^TEST_TRUE' Makefile.in && Exit 1
+grep '^TEST_FALSE' Makefile.in && exit 1
+grep '^TEST_TRUE' Makefile.in && exit 1
grep '^@TEST_TRUE@VAR = true$' Makefile.in
grep '^@TEST_FALSE@VAR = false$' Makefile.in