summaryrefslogtreecommitdiff
path: root/t/distdir.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/distdir.sh')
-rwxr-xr-xt/distdir.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/distdir.sh b/t/distdir.sh
index 41a9a8c7b..9600746b2 100755
--- a/t/distdir.sh
+++ b/t/distdir.sh
@@ -21,7 +21,7 @@
# Also test DISTFILES containing a directory and a file in it,
# and repeated directories.
-. ./defs || Exit 1
+. ./defs || exit 1
cat >> configure.ac << 'END'
AC_OUTPUT
@@ -64,7 +64,7 @@ cd build
../configure
$MAKE distdir
# Check to make sure 'foo' isn't made in build directory.
-test -d foo && Exit 1
+test -d foo && exit 1
rm -rf $me-1.0
# Remove the dot from VERSION for the next grep.
@@ -73,7 +73,7 @@ cat stdout
# Make sure no './' appear in the directory names. srcdir is '..', so
# this also checks that no directory is created in the source tree.
-grep 'MKDIR_P.*\.' stdout && Exit 1
+grep 'MKDIR_P.*\.' stdout && exit 1
cd ..
./configure --prefix "$(pwd)"