diff options
Diffstat (limited to 't/output4.sh')
-rwxr-xr-x | t/output4.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/output4.sh b/t/output4.sh index fa6a95ea5..54d49e297 100755 --- a/t/output4.sh +++ b/t/output4.sh @@ -16,7 +16,7 @@ # It's hard to believe there are so many AC_OUTPUT-related bugs. -. ./defs || Exit 1 +. ./defs || exit 1 cat > configure.ac <<END AC_INIT([$me], [1.0]) @@ -31,5 +31,5 @@ mkdir tests $ACLOCAL $AUTOMAKE -grep tests/defs.in tests/Makefile.in && Exit 1 -Exit 0 +grep tests/defs.in tests/Makefile.in && exit 1 +exit 0 |