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 /Makefile | |
parent | f1142c5b11ffadd18eb599c4915d755f3fe61953 (diff) | |
download | busybox-w32-a183f0582550c873e69fd806e051320957f77e0f.tar.gz busybox-w32-a183f0582550c873e69fd806e051320957f77e0f.tar.bz2 busybox-w32-a183f0582550c873e69fd806e051320957f77e0f.zip |
Cleanup the use of 'find' to prevent error msgs.
-Erik
Diffstat (limited to 'Makefile')
-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 | ||