diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-21 21:10:29 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-21 21:10:29 (GMT) |
commit | 2c49a718d7e3332f4a7cbbf612956806b27a6375 (patch) | |
tree | bccd5f785588c6508fdb3a35330d4ada12491d6b /doc | |
parent | 43bed07320954f6ac499e7a65bd01685369658cf (diff) | |
download | hdf5-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 'doc')
-rw-r--r-- | doc/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in index a5fea82..8a56e2e 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -37,7 +37,9 @@ install-doc: done uninstall-doc: - -$(RM) -r $(DOCDIR)/hdf5 + @@SETX@; for d in $(SUBDIRS); do \ + (cd $$d && $(MAKE) $@) || exit 1; \ + done .PHONY: all lib progs test _test install uninstall dep depend clean \ mostlyclean distclean maintainer-clean |