]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/compile.at (GNU Fortran 77): s/g77/G77/.
authorAkim Demaille <akim@epita.fr>
Fri, 15 Dec 2000 10:52:03 +0000 (10:52 +0000)
committerAkim Demaille <akim@epita.fr>
Fri, 15 Dec 2000 10:52:03 +0000 (10:52 +0000)
Reported by Ezra Peisach.

ChangeLog
tests/compile.at

index ff4a0008f87ac1824caa40eeadd77d89cf73c759..5beba0c0c8d8b479b5c09c76e7f209642e3e73b6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-12-15  Akim Demaille  <akim@epita.fr>
+
+       * tests/compile.at (GNU Fortran 77): s/g77/G77/.
+       Reported by Ezra Peisach.
+
 2000-12-15  Akim Demaille  <akim@epita.fr>
 
        * man/Makefile.am (.x.1): Fix to work properly with
index c4eb32cbab9e40fc9cbcf92224c247354ead9896..dee58107c2d409da7ea92ca8b7707f9f52476e9e 100644 (file)
@@ -111,13 +111,13 @@ AT_CHECK_MACRO([GNU Fortran 77],
 [[AC_LANG(Fortran 77)
 AC_LANG_COMPILER
 
-if $F77 --version 2> /dev/null | grep GNU >/dev/null; then
+if $F77 --version 2>/dev/null | grep GNU >/dev/null; then
   # Has GNU in --version.
   test $G77 = no &&
     AC_MSG_ERROR([failed to recognize GNU Fortran 77 compiler])
 else
   # Has not.
-  test $g77 = yes &&
+  test $G77 = yes &&
     AC_MSG_ERROR([incorrectly recognized a GNU Fortran 77 compiler])
 fi
 exit 0]])