summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-02-21 21:10:29 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-02-21 21:10:29 (GMT)
commit2c49a718d7e3332f4a7cbbf612956806b27a6375 (patch)
treebccd5f785588c6508fdb3a35330d4ada12491d6b /config
parent43bed07320954f6ac499e7a65bd01685369658cf (diff)
downloadhdf5-2c49a718d7e3332f4a7cbbf612956806b27a6375.zip
hdf5-2c49a718d7e3332f4a7cbbf612956806b27a6375.tar.gz
hdf5-2c49a718d7e3332f4a7cbbf612956806b27a6375.tar.bz2
[svn-r4999] Purpose:
Bug Fix Description: ``make uninstall-doc'' wasn't working properly. Some files would be left behind in the installed source tree. The fix I put in was too heavy-handed as it wiped out the entire doc tree that was installed and would remove any other files which were installed there. Solution: Executed the ``make uninstall-examples'' command if uninstalling the docs. Fixed how the java Tutorial examples were being removed (they weren't). Essentially used the PUB_SUBDOCS macro to help remove them. Platforms tested: Linux
Diffstat (limited to 'config')
-rw-r--r--config/conclude.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/config/conclude.in b/config/conclude.in
index 07a9040..7571bd8 100644
--- a/config/conclude.in
+++ b/config/conclude.in
@@ -211,6 +211,9 @@ uninstall-doc:
@if test -n "$(PUB_DOCS)"; then \
set -x; cd $(DOCDIR) && $(RM) $(PUB_DOCS); \
fi
+ @if test -n "$(PUB_SUBDOCS)"; then \
+ set -x; cd $(DOCDIR) && $(RM) $(PUB_SUBDOCS); \
+ fi
## Removes temporary files without removing the final target files. That is,
## remove things like object files but not libraries or executables.