summaryrefslogtreecommitdiffstats
path: root/hl/fortran/examples
diff options
context:
space:
mode:
authorM. Scot Breitenfeld <brtnfld@hdfgroup.org>2017-08-01 13:45:04 (GMT)
committerM. Scot Breitenfeld <brtnfld@hdfgroup.org>2017-08-01 13:45:04 (GMT)
commitca973192bc86f75066fdc8468c4f0293ff0b725d (patch)
tree9aac8ae5e3c4cf62d09327f5145f293d808b2132 /hl/fortran/examples
parent3558c82af4127a8b72acdae0177ce0ed5b2aeea6 (diff)
downloadhdf5-ca973192bc86f75066fdc8468c4f0293ff0b725d.zip
hdf5-ca973192bc86f75066fdc8468c4f0293ff0b725d.tar.gz
hdf5-ca973192bc86f75066fdc8468c4f0293ff0b725d.tar.bz2
Removed extra Fortran flags, (HDFFV-10037)
Diffstat (limited to 'hl/fortran/examples')
-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 b8ed434..71c2866 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