summaryrefslogtreecommitdiff
path: root/t/instdir-python.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/instdir-python.sh')
-rwxr-xr-xt/instdir-python.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/instdir-python.sh b/t/instdir-python.sh
index c15370e42..3d39bd8e0 100755
--- a/t/instdir-python.sh
+++ b/t/instdir-python.sh
@@ -17,7 +17,7 @@
# If $(pythondir) is the empty string, then nothing should be installed there.
required=python
-. ./defs || Exit 1
+. ./defs || exit 1
cat >>configure.ac <<'END'
AM_PATH_PYTHON
@@ -54,9 +54,9 @@ test ! -d "$instdir"
$MAKE -e install DESTDIR="$destdir"
test ! -d "$instdir"
test ! -d "$destdir"
-$MAKE -e uninstall > stdout || { cat stdout; Exit 1; }
+$MAKE -e uninstall > stdout || { cat stdout; exit 1; }
cat stdout
-grep 'rm -f' stdout && Exit 1
+grep 'rm -f' stdout && exit 1
$MAKE -e uninstall DESTDIR="$destdir"
: