From ed7a1d171c2a6ad1c6630b11ad3f8614608accb5 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 27 Feb 2001 17:41:49 -0500 Subject: [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 --- tools/Makefile.in | 6 +++--- 1 file 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 -- cgit v0.12