AT_CHECK_MACRO since it skips tests embedded in configure.ac.
Remove files which might have been created when invoking the
compiler.
Reported by Nicolas Joly.
+2001-05-19 Akim Demaille <akim@epita.fr>
+
+ * tests/compile.at (GNU Fortran 77): Don't AS_EXIT when using
+ AT_CHECK_MACRO since it skips tests embedded in configure.ac.
+ Remove files which might have been created when invoking the
+ compiler.
+ Reported by Nicolas Joly.
+
2001-05-14 Pavel Roskin <proski@gnu.org>
* doc/autoconf.texi (Shellology): Document a quirk in
AC_LANG_COMPILER
if AC_TRY_COMMAND([$F77 --version | grep GNU >&2]); then
+ # Be sure to remove files which might be created by compilers that
+ # don't support --version.
+ rm -f a.exe a.out
# Has GNU in --version.
test "$G77" != yes &&
AC_MSG_ERROR([failed to recognize GNU Fortran 77 compiler])
else
+ # Be sure to remove files which might be created by compilers that
+ # don't support --version.
+ rm -f a.exe a.out
# Has not.
test "$G77" = yes &&
AC_MSG_ERROR([incorrectly recognized a GNU Fortran 77 compiler])
-fi
-AS_EXIT(0)]])
+fi]])