summaryrefslogtreecommitdiff
path: root/t/specflg2.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/specflg2.sh')
-rwxr-xr-xt/specflg2.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/t/specflg2.sh b/t/specflg2.sh
index 9f9569c8d..4560715c1 100755
--- a/t/specflg2.sh
+++ b/t/specflg2.sh
@@ -16,7 +16,7 @@
# Test library-specific flags.
-. ./defs || Exit 1
+. ./defs || exit 1
cat >> configure.ac << 'END'
AC_PROG_CC
@@ -46,14 +46,14 @@ grep 'required.*compile' stderr
$AUTOMAKE
# Look for $(COMPILE) -c in .c.o rule.
-grep 'COMPILE. [^-]' Makefile.in && Exit 1
+grep 'COMPILE. [^-]' Makefile.in && exit 1
# Look for libfoo_a-foo.o.
grep foo Makefile.in
-grep '[^-]foo\.o' Makefile.in && Exit 1
+grep '[^-]foo\.o' Makefile.in && exit 1
# Look for libfoo_a-bar.o.
grep bar Makefile.in
-grep '[^-]bar\.o' Makefile.in && Exit 1
+grep '[^-]bar\.o' Makefile.in && exit 1
-Exit 0
+exit 0