From 2f55a065d79137f13300c7bf32871c34b144064f Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Tue, 20 Sep 2005 14:11:29 +0000 Subject: [PATCH] clean bug --- commands/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/Makefile b/commands/Makefile index b5016efe3..6c3974b8d 100755 --- a/commands/Makefile +++ b/commands/Makefile @@ -70,7 +70,7 @@ clean:: if [ -f $(LYNX)/Makefile ] ; then cd $(LYNX) && make clean; fi if [ -f $(EMACS)/Makefile ] ; then cd $(EMACS) && make clean; fi cd $(COREUTILS) && make clean - for p in $(SMALLPROGRAMS); do cd $$p && make clean; done + for p in $(SMALLPROGRAMS); do ( cd $$p && make clean ); done small:: for p in $(SMALLPROGRAMS); do ( cd $$p && make all ); done -- 2.44.0