diff options
Diffstat (limited to 't/aclocal-path-install.sh')
-rwxr-xr-x | t/aclocal-path-install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/aclocal-path-install.sh b/t/aclocal-path-install.sh index 71d718cec..b03f28ed3 100755 --- a/t/aclocal-path-install.sh +++ b/t/aclocal-path-install.sh @@ -17,7 +17,7 @@ # ACLOCAL_PATH and '--install' interactions. am_create_testdir=empty -. ./defs || Exit 1 +. ./defs || exit 1 cat > configure.ac << 'END' AC_INIT @@ -39,7 +39,7 @@ END # The '--install' option should never cause anything to be installed # in a directory specified in ACLOCAL_PATH. -$ACLOCAL --install 2>stderr && { cat stderr >&2; Exit 1; } +$ACLOCAL --install 2>stderr && { cat stderr >&2; exit 1; } cat stderr >&2 grep ' no -I was supplied' stderr test ! -f pdir/foo.m4 |