diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-01 20:00:54 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-01 20:00:54 (GMT) |
commit | e79fa0f234cb8ed37427ad8415eb5879d4df9248 (patch) | |
tree | 8a49e044e453f321e5f4cb5ad4ea8a5c70a1df1e /fortran | |
parent | f4f79e6af6c69968bc46babe4732021214c95e3e (diff) | |
download | hdf5-e79fa0f234cb8ed37427ad8415eb5879d4df9248.zip hdf5-e79fa0f234cb8ed37427ad8415eb5879d4df9248.tar.gz hdf5-e79fa0f234cb8ed37427ad8415eb5879d4df9248.tar.bz2 |
[svn-r3054] Purpose:
Bug Fix
Description:
We were not propagating the FFLAGS macro. I.e., we were
overwriting it after it was set in the commence.in includes.
Solution:
Include it with a ``@FFLAGS@'' where we'd normally overwrite it
so that it isn't.
Platforms tested:
T3E
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/examples/Makefile.in | 2 | ||||
-rw-r--r-- | fortran/test/Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fortran/examples/Makefile.in b/fortran/examples/Makefile.in index a452d90..0ff5ae1 100644 --- a/fortran/examples/Makefile.in +++ b/fortran/examples/Makefile.in @@ -15,7 +15,7 @@ hdf5_builddir=$(top_builddir)/src ## libraries to the library list. LT_LINK_LIB=$(LT) --mode=link $(F9X) -static -rpath $(libdir) MFLAG=@F9XMODFLAG@ -FFLAGS=$(MFLAG). $(MFLAG)../src +FFLAGS=$(MFLAG). $(MFLAG)../src @FFLAGS@ FLIB=../src/libhdf5_fortran.la HDF5LIB=$(hdf5_builddir)/libhdf5.la diff --git a/fortran/test/Makefile.in b/fortran/test/Makefile.in index 1a3de05..a389684 100644 --- a/fortran/test/Makefile.in +++ b/fortran/test/Makefile.in @@ -15,7 +15,7 @@ hdf5_builddir=$(top_builddir)/src ## libraries to the library list. LT_LINK_LIB=$(LT) --mode=link $(F9X) -static -rpath $(libdir) MFLAG=@F9XMODFLAG@ -FFLAGS=$(MFLAG). $(MFLAG)../src +FFLAGS=$(MFLAG). $(MFLAG)../src @FFLAGS@ FLIB=../src/libhdf5_fortran.la HDF5LIB=$(hdf5_builddir)/libhdf5.la |