diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-02-07 16:41:28 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-02-07 16:41:28 (GMT) |
commit | b9d5eb15435f6480fda9d60f34a1faa5c01edbf1 (patch) | |
tree | 3340ee40efd417056dbb194c1f0431607f9b1a9c | |
parent | 6a7a80135d284f547c0e3069404d71702ae8fdb9 (diff) | |
download | hdf5-b9d5eb15435f6480fda9d60f34a1faa5c01edbf1.zip hdf5-b9d5eb15435f6480fda9d60f34a1faa5c01edbf1.tar.gz hdf5-b9d5eb15435f6480fda9d60f34a1faa5c01edbf1.tar.bz2 |
[svn-r9950]
Purpose:
Bug fix
Description:
Make uninstall in /fortran/testpar was trying to remove install/bin directory.
Solution:
Remove the extra line that was copy-pasted into Makefile.am by mistake. Oops.
Platforms tested:
Copper.
-rw-r--r-- | fortran/testpar/Makefile.am | 3 | ||||
-rw-r--r-- | fortran/testpar/Makefile.in | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/fortran/testpar/Makefile.am b/fortran/testpar/Makefile.am index 0a096d5..e6301d0 100644 --- a/fortran/testpar/Makefile.am +++ b/fortran/testpar/Makefile.am @@ -57,8 +57,7 @@ uninstall-local: if test -f "$(includedir)/hdf5.$(F9XMODEXT)" -o -f "$(includedir)/HDF5.$(F9XMODEXT)"; then \ set -x; $(RM) $(includedir)/*.$(F9XMODEXT); \ fi; \ - fi; \ - $(RM) $(bindir)/$(H5FC_NAME) + fi # Put in dependencies to the THDF5 module so that things will be built # in the correct order. diff --git a/fortran/testpar/Makefile.in b/fortran/testpar/Makefile.in index f4b367a..c520330 100644 --- a/fortran/testpar/Makefile.in +++ b/fortran/testpar/Makefile.in @@ -470,8 +470,7 @@ uninstall-local: if test -f "$(includedir)/hdf5.$(F9XMODEXT)" -o -f "$(includedir)/HDF5.$(F9XMODEXT)"; then \ set -x; $(RM) $(includedir)/*.$(F9XMODEXT); \ fi; \ - fi; \ - $(RM) $(bindir)/$(H5FC_NAME) + fi # Put in dependencies to the THDF5 module so that things will be built # in the correct order. |