diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2013-03-22 22:29:55 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2013-03-22 22:29:55 (GMT) |
commit | 865bf6bcb28273de759600a3e3ac4cd31e9788b4 (patch) | |
tree | 042d97eae71024f4440b8d492ddccb6f5df1a2e8 /configure.ac | |
parent | 8ffd55478e11904f193b4a98477b3bcb452b93ac (diff) | |
parent | 99b15244742caf98b5ff634f34d880fd0089d8d4 (diff) | |
download | hdf5-865bf6bcb28273de759600a3e3ac4cd31e9788b4.zip hdf5-865bf6bcb28273de759600a3e3ac4cd31e9788b4.tar.gz hdf5-865bf6bcb28273de759600a3e3ac4cd31e9788b4.tar.bz2 |
[svn-r23435] ported revisions 23346:23432 from the trunk
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index e705340..cfe6cec 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.9.148], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.9.149], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADER([src/H5config.h]) @@ -434,9 +434,10 @@ if test "X$HDF_FORTRAN" = "Xyes"; then ## -------------------------------------------------------------------- ## General Fortran flags - ## - AM_FCFLAGS="${AM_FCFLAGS} ${FFLAGS}" - FCFLAGS="${FCFLAGS} ${FFLAGS}" + ## Only add FFLAGS to FCFLAGS if it's set. + if test "x$FFLAGS" != "x" ; then + FCFLAGS="${FCFLAGS} ${FFLAGS}" + fi ## -------------------------------------------------------------------- ## Fortran source extention |