diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2009-10-15 18:11:56 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2009-10-15 18:11:56 (GMT) |
commit | f7b06c8505eee62e54e295468b45ebcfd0f2cf65 (patch) | |
tree | b5ff12f240fa329239a13b509313644a05d346b4 | |
parent | d1bb0c7bb338b36c51fb502285c1d6fd6306db18 (diff) | |
download | hdf5-f7b06c8505eee62e54e295468b45ebcfd0f2cf65.zip hdf5-f7b06c8505eee62e54e295468b45ebcfd0f2cf65.tar.gz hdf5-f7b06c8505eee62e54e295468b45ebcfd0f2cf65.tar.bz2 |
[svn-r17647] Maintenance: Configure didn't cleanup Fortran module file; fixed.
Platforms tested: jam (trivial change)
Note: Most of the Fortran compilers create module files with "mod" extension.
In the past, I believe, there were systems (Cray?) that used different
extensions. We should add those to the current fix when we find them.
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Id: configure.in 17639 2009-10-13 21:55:21Z mamcgree . +# From configure.in Id: configure.in 17643 2009-10-14 21:43:05Z mamcgree . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.64 for HDF5 1.9.49. # @@ -28242,7 +28242,7 @@ else SETX="set -x" fi -rm -f conftest conftest.o conftest.c dummy.o +rm -f conftest conftest.o conftest.c dummy.o *.mod # First the stamp1 file for H5config.h.in diff --git a/configure.in b/configure.in index 806f8b8..c5bacd7 100644 --- a/configure.in +++ b/configure.in @@ -4026,7 +4026,7 @@ else fi dnl Some cleanup stuff -rm -f conftest conftest.o conftest.c dummy.o +rm -f conftest conftest.o conftest.c dummy.o *.mod dnl Build config.status, touch the stamp files, and build all the Makefiles. dnl The order is such that the first `make' does not need to update any |