summaryrefslogtreecommitdiffstats
path: root/hl
diff options
context:
space:
mode:
authorM. Scot Breitenfeld <brtnfld@hdfgroup.org>2017-08-01 13:46:23 (GMT)
committerM. Scot Breitenfeld <brtnfld@hdfgroup.org>2017-08-01 13:46:23 (GMT)
commitcf2da9a3d3d608c8763be06e3f036e3d6cb12e72 (patch)
treeda779b0f82142c54a6d84145ec30688c6e9914a9 /hl
parent668b90b96dcb237208dcedd63e0f2b7da8a0328c (diff)
downloadhdf5-cf2da9a3d3d608c8763be06e3f036e3d6cb12e72.zip
hdf5-cf2da9a3d3d608c8763be06e3f036e3d6cb12e72.tar.gz
hdf5-cf2da9a3d3d608c8763be06e3f036e3d6cb12e72.tar.bz2
Removed extra Fortran flags, (HDFFV-10037)
Diffstat (limited to 'hl')
-rw-r--r--hl/fortran/examples/Makefile.am4
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