diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2011-10-20 20:38:21 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2011-10-20 20:38:21 (GMT) |
commit | cc6ce34d23ab42bcc0df38beb94ad5683f604aaa (patch) | |
tree | 42f33e6b7bd64683fc9a49bc5b281561b38ef663 | |
parent | eefa5cf26f800a7d63a706f6465015645b7a8eb1 (diff) | |
download | hdf5-cc6ce34d23ab42bcc0df38beb94ad5683f604aaa.zip hdf5-cc6ce34d23ab42bcc0df38beb94ad5683f604aaa.tar.gz hdf5-cc6ce34d23ab42bcc0df38beb94ad5683f604aaa.tar.bz2 |
[svn-r21628] Description:
Removed line:
$(RM) $(DESTDIR)$(includedir)/H5f90i*.h
These *.h files are needed for HL_NPOESS and should not be removed when make clean is specified.
The Daily Test installs the file using the deploy script, but then
runs make clean which removes the file, so the files are not there when we try to compile HL_NPOESS
causing an error.
-rw-r--r-- | fortran/src/Makefile.am | 1 | ||||
-rw-r--r-- | fortran/src/Makefile.in | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/fortran/src/Makefile.am b/fortran/src/Makefile.am index f4cfb6a..e6ef610 100644 --- a/fortran/src/Makefile.am +++ b/fortran/src/Makefile.am @@ -102,7 +102,6 @@ clean-local: @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ $(RM) *.$(F9XMODEXT); \ fi - $(RM) $(DESTDIR)$(includedir)/H5f90i*.h install-data-local: @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in index 58c8df3..af1083f 100644 --- a/fortran/src/Makefile.in +++ b/fortran/src/Makefile.in @@ -478,7 +478,7 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog # Add libtool shared library version numbers to the HDF5 library # See libtool versioning documentation online. LT_VERS_INTERFACE = 6 -LT_VERS_REVISION = 86 +LT_VERS_REVISION = 85 LT_VERS_AGE = 0 # Include src directory in both Fortran and C flags (C compiler is used @@ -989,7 +989,6 @@ clean-local: @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ $(RM) *.$(F9XMODEXT); \ fi - $(RM) $(DESTDIR)$(includedir)/H5f90i*.h install-data-local: @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ |