aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 8fdfd856e..dc7427c29 100644
--- a/Makefile
+++ b/Makefile
@@ -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
324distclean: clean 324distclean: 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