diff options
author | M. Scot Breitenfeld <brtnfld@hdfgroup.org> | 2017-07-27 13:52:21 (GMT) |
---|---|---|
committer | M. Scot Breitenfeld <brtnfld@hdfgroup.org> | 2017-07-27 13:52:21 (GMT) |
commit | b7f19967d76f50890ff6ef1a7a756dc37c555538 (patch) | |
tree | f2d6f26fb1a8522f9601318d0b61bab53884d7e1 /fortran | |
parent | 67da953c1ce3c8d909f2414d6dff38da63890c81 (diff) | |
download | hdf5-b7f19967d76f50890ff6ef1a7a756dc37c555538.zip hdf5-b7f19967d76f50890ff6ef1a7a756dc37c555538.tar.gz hdf5-b7f19967d76f50890ff6ef1a7a756dc37c555538.tar.bz2 |
Removed FCFLAGS when building the examples since they should already be included the h5fc wrapper. NAG complains about doubly declared options.
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/examples/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/examples/Makefile.am b/fortran/examples/Makefile.am index db85c09..6bf2edb 100644 --- a/fortran/examples/Makefile.am +++ b/fortran/examples/Makefile.am @@ -66,10 +66,10 @@ h5_crtatt.chkexe_: h5_rdwt.chkexe_ # Additional dependencies for the examples are listed below 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 |