diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-02-27 22:41:49 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-02-27 22:41:49 (GMT) |
commit | ed7a1d171c2a6ad1c6630b11ad3f8614608accb5 (patch) | |
tree | 92bd5199e88ba3256f8ff9825e11517075c98bf8 /tools/Makefile.in | |
parent | c45a1d919ab708eac67f93e0a976b39214e30fdf (diff) | |
download | hdf5-ed7a1d171c2a6ad1c6630b11ad3f8614608accb5.zip hdf5-ed7a1d171c2a6ad1c6630b11ad3f8614608accb5.tar.gz hdf5-ed7a1d171c2a6ad1c6630b11ad3f8614608accb5.tar.bz2 |
[svn-r3523] Purpose:
Bug Fix
Description:
For some reason, it was trying to cd to the examples/ and pablo/
directories to do a distclean. Only problem was, they aren't here.
Solution:
Removed those from the `for' loop.
Platforms tested:
Linux
Diffstat (limited to 'tools/Makefile.in')
-rw-r--r-- | tools/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index fbbb440..6b3880c 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -64,7 +64,7 @@ install-doc: (cd $$d && $(MAKE) $@); \ done -.PHONY: all lib progs test _test install uninstall dep depend clean \ +.PHONY: all lib progs test _test install uninstall dep depend clean \ mostlyclean distclean maintainer-clean clean mostlyclean: @@ -73,8 +73,8 @@ clean mostlyclean: done distclean: - @@SETX@; for d in $(SUBDIRS) examples pablo; do \ - (cd $$d && $(MAKE) $@); \ + @@SETX@; for d in $(SUBDIRS); do \ + (cd $$d && $(MAKE) $@); \ done -$(RM) Makefile |