diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:22:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:22:54 +0000 |
commit | a183f0582550c873e69fd806e051320957f77e0f (patch) | |
tree | a927c708b23db8f8e85248fcebcc95f576c2ad36 | |
parent | f1142c5b11ffadd18eb599c4915d755f3fe61953 (diff) | |
download | busybox-a183f0582550c873e69fd806e051320957f77e0f.tar.gz |
Cleanup the use of 'find' to prevent error msgs.
-Erik
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -319,7 +319,7 @@ clean: - rm -f multibuild.log Config.h.orig - rm -rf docs/busybox _install $(PWD_LIB) - rm -f busybox.links loop.h *~ slist.mk core applet_source_list - - find -name *.o | xargs rm -f; + - find -name \*.o -exec rm -f {} \; distclean: clean - rm -f busybox @@ -343,17 +343,17 @@ dist release: distclean doc find busybox-$(VERSION)/ -type d \ -name CVS \ -print \ - | xargs rm -rf; \ + -exec rm -rf {} \; \ \ find busybox-$(VERSION)/ -type f \ -name .cvsignore \ -print \ - | xargs rm -f; \ + -exec rm -f {} \; \ \ find busybox-$(VERSION)/ -type f \ -name .\#* \ -print \ - | xargs rm -f; \ + -exec rm -f {} \; \ \ tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/; |