From eb231e0223b79b5fd9941bff052504f1d57abca9 Mon Sep 17 00:00:00 2001 From: andersen Date: Tue, 20 Feb 2001 06:22:54 +0000 Subject: Cleanup the use of 'find' to prevent error msgs. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1866 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 8fdfd856e..dc7427c29 100644 --- a/Makefile +++ b/Makefile @@ -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)/; -- cgit v1.2.3-55-g6feb