summaryrefslogtreecommitdiff
path: root/t/mkinstall.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/mkinstall.sh')
-rwxr-xr-xt/mkinstall.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/mkinstall.sh b/t/mkinstall.sh
index e6b3bc22a..51c1fe949 100755
--- a/t/mkinstall.sh
+++ b/t/mkinstall.sh
@@ -16,7 +16,7 @@
# Test for bug where mkinstalldirs variable can be set incorrectly.
-. ./defs || Exit 1
+. ./defs || exit 1
cat > Makefile.am << 'END'
pkgdata_DATA =
@@ -27,5 +27,5 @@ END
$ACLOCAL
$AUTOMAKE ././Makefile
-grep ' /mkinstalldirs' Makefile.in && Exit 1
-Exit 0
+grep ' /mkinstalldirs' Makefile.in && exit 1
+exit 0