diff options
Diffstat (limited to 'tests/output2.test')
-rwxr-xr-x | tests/output2.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/output2.test b/tests/output2.test index 6c98a8373..1a42c4319 100755 --- a/tests/output2.test +++ b/tests/output2.test @@ -16,7 +16,7 @@ # Another AC_OUTPUT test. From report by Ulrich Drepper. -. ./defs || exit 1 +. ./defs || Exit 1 cat > configure.in << 'END' AC_INIT @@ -31,8 +31,8 @@ mkdir intl po misc : > po/Makefile.in.am : > misc/gettextize.in -$ACLOCAL || exit 1 -$AUTOMAKE || exit 1 +$ACLOCAL || Exit 1 +$AUTOMAKE || Exit 1 -grep '^gettextize' Makefile.in && exit 1 -exit 0 +grep '^gettextize' Makefile.in && Exit 1 +Exit 0 |