diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-02-20 06:22:54 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-02-20 06:22:54 +0000 |
commit | eb231e0223b79b5fd9941bff052504f1d57abca9 (patch) | |
tree | a927c708b23db8f8e85248fcebcc95f576c2ad36 | |
parent | 7597d90cc0ab1d69a1302bc4001ad539430078e9 (diff) | |
download | busybox-w32-eb231e0223b79b5fd9941bff052504f1d57abca9.tar.gz busybox-w32-eb231e0223b79b5fd9941bff052504f1d57abca9.tar.bz2 busybox-w32-eb231e0223b79b5fd9941bff052504f1d57abca9.zip |
Cleanup the use of 'find' to prevent error msgs.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@1866 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -319,7 +319,7 @@ clean: | |||
319 | - rm -f multibuild.log Config.h.orig | 319 | - rm -f multibuild.log Config.h.orig |
320 | - rm -rf docs/busybox _install $(PWD_LIB) | 320 | - rm -rf docs/busybox _install $(PWD_LIB) |
321 | - rm -f busybox.links loop.h *~ slist.mk core applet_source_list | 321 | - rm -f busybox.links loop.h *~ slist.mk core applet_source_list |
322 | - find -name *.o | xargs rm -f; | 322 | - find -name \*.o -exec rm -f {} \; |
323 | 323 | ||
324 | distclean: clean | 324 | distclean: clean |
325 | - rm -f busybox | 325 | - rm -f busybox |
@@ -343,17 +343,17 @@ dist release: distclean doc | |||
343 | find busybox-$(VERSION)/ -type d \ | 343 | find busybox-$(VERSION)/ -type d \ |
344 | -name CVS \ | 344 | -name CVS \ |
345 | -print \ | 345 | -print \ |
346 | | xargs rm -rf; \ | 346 | -exec rm -rf {} \; \ |
347 | \ | 347 | \ |
348 | find busybox-$(VERSION)/ -type f \ | 348 | find busybox-$(VERSION)/ -type f \ |
349 | -name .cvsignore \ | 349 | -name .cvsignore \ |
350 | -print \ | 350 | -print \ |
351 | | xargs rm -f; \ | 351 | -exec rm -f {} \; \ |
352 | \ | 352 | \ |
353 | find busybox-$(VERSION)/ -type f \ | 353 | find busybox-$(VERSION)/ -type f \ |
354 | -name .\#* \ | 354 | -name .\#* \ |
355 | -print \ | 355 | -print \ |
356 | | xargs rm -f; \ | 356 | -exec rm -f {} \; \ |
357 | \ | 357 | \ |
358 | tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/; | 358 | tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/; |
359 | 359 | ||