summaryrefslogtreecommitdiffstats
path: root/fortran/acsite.m4
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-01-18 20:33:56 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-01-18 20:33:56 (GMT)
commit5104f10fed42b211b764d51be6ca45b182834e71 (patch)
tree70d2c61373eaacc29c40b6d583761c6ac38689a9 /fortran/acsite.m4
parent07319d804bd393eb670bd09cd3a906aba8c444fe (diff)
downloadhdf5-5104f10fed42b211b764d51be6ca45b182834e71.zip
hdf5-5104f10fed42b211b764d51be6ca45b182834e71.tar.gz
hdf5-5104f10fed42b211b764d51be6ca45b182834e71.tar.bz2
[svn-r3298] Purpose:
Bug Fix Description: Small bug fix to the acsite.m4 stuff. We should check if the Fortran 9X compiler was found instead of the CC compiler. Solution: Changed CC to F9X macro. Platforms tested: Linux
Diffstat (limited to 'fortran/acsite.m4')
-rw-r--r--fortran/acsite.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/acsite.m4 b/fortran/acsite.m4
index 23e8409..f1c8ad4 100644
--- a/fortran/acsite.m4
+++ b/fortran/acsite.m4
@@ -15,7 +15,7 @@ dnl Check for a Fortran 9X compiler.
dnl
AC_DEFUN(AC_PROG_F9X,
[AC_CHECK_PROGS(F9X, f90 pgf90 f95 g95)
-test -z "$CC" && AC_MSG_ERROR([no acceptable f9X compiler found in \$PATH])
+test -z "$F9X" && AC_MSG_ERROR([no acceptable f9X compiler found in \$PATH])
AC_PROG_F9X_WORKS
AC_PROG_F9X_GNU