diff options
Diffstat (limited to 't/cond44.sh')
-rwxr-xr-x | t/cond44.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/cond44.sh b/t/cond44.sh index 8cc2c2e91..71c3bcd0d 100755 --- a/t/cond44.sh +++ b/t/cond44.sh @@ -17,7 +17,7 @@ # Check that redefinitions of AC_SUBST'ed AM_SUBST_NOTMAKE'd variables # are not diagnosed. See cond23.test. -. ./defs || Exit 1 +. ./defs || exit 1 cat >>configure.ac <<EOF AM_CONDITIONAL([COND], [true]) @@ -33,6 +33,6 @@ EOF $ACLOCAL AUTOMAKE_run -grep 'libdir was already defined' stderr && Exit 1 -grep '^libdir = ' Makefile.in && Exit 1 -Exit 0 +grep 'libdir was already defined' stderr && exit 1 +grep '^libdir = ' Makefile.in && exit 1 +exit 0 |