From: Ben Gras Date: Tue, 20 Sep 2005 14:11:29 +0000 (+0000) Subject: clean bug X-Git-Tag: v3.1.0~45 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=2f55a065d79137f13300c7bf32871c34b144064f;p=minix.git clean bug --- 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