summaryrefslogtreecommitdiff
path: root/t/link_f90_only.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/link_f90_only.sh')
-rwxr-xr-xt/link_f90_only.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/link_f90_only.sh b/t/link_f90_only.sh
index a34d6c6d2..252d46a3a 100755
--- a/t/link_f90_only.sh
+++ b/t/link_f90_only.sh
@@ -17,7 +17,7 @@
# Test to make sure the Fortran 90 linker is used when appropriate.
# (copied from link_f_only.test) Mike Nolta <mrnolta@princeton.edu>
-. ./defs || Exit 1
+. ./defs || exit 1
cat >> configure.ac << 'END'
AC_PROG_FC
@@ -38,7 +38,7 @@ $AUTOMAKE
grep '.\$(FCLINK)' Makefile.in
# We should not see these patterns:
-grep '.\$(CXXLINK)' Makefile.in && Exit 1
-grep '.\$(LINK)' Makefile.in && Exit 1
+grep '.\$(CXXLINK)' Makefile.in && exit 1
+grep '.\$(LINK)' Makefile.in && exit 1
-Exit 0
+exit 0