diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2017-08-01 14:47:02 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2017-08-01 14:47:02 (GMT) |
commit | 80745c75087fc30200fd6a6ceed4ce94378ee0ee (patch) | |
tree | da779b0f82142c54a6d84145ec30688c6e9914a9 | |
parent | 823f6a133302f1d6ba904020ad092723d2657d02 (diff) | |
parent | 6e551a270bde6214b0e533e9cd9e845d2f9f4789 (diff) | |
download | hdf5-80745c75087fc30200fd6a6ceed4ce94378ee0ee.zip hdf5-80745c75087fc30200fd6a6ceed4ce94378ee0ee.tar.gz hdf5-80745c75087fc30200fd6a6ceed4ce94378ee0ee.tar.bz2 |
Merge pull request #622 in HDFFV/hdf5 from ~BRTNFLD/hdf5_msb:develop to develop
* commit '6e551a270bde6214b0e533e9cd9e845d2f9f4789':
Removed extra Fortran flags, (HDFFV-10037)
-rw-r--r-- | hl/fortran/examples/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/fortran/examples/Makefile.am b/hl/fortran/examples/Makefile.am index 6709fb7..d383f9a 100644 --- a/hl/fortran/examples/Makefile.am +++ b/hl/fortran/examples/Makefile.am @@ -43,10 +43,10 @@ FORTRAN_API=yes # Tell automake how to build examples using h5fc if BUILD_PARALLEL_CONDITIONAL $(EXTRA_PROG): $(H5FC_PP) - $(H5FC_PP) $(H5CCFLAGS) $(FCFLAGS) -o $@ $(srcdir)/$@.f90; + $(H5FC_PP) $(H5CCFLAGS) -o $@ $(srcdir)/$@.f90; else $(EXTRA_PROG): $(H5FC) - $(H5FC) $(H5CCFLAGS) $(FCFLAGS) -o $@ $(srcdir)/$@.f90; + $(H5FC) $(H5CCFLAGS) -o $@ $(srcdir)/$@.f90; endif # Tell automake how to install examples |