mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
Cleanup the use of 'find' to prevent error msgs.
-Erik
This commit is contained in:
parent
f1142c5b11
commit
a183f05825
8
Makefile
8
Makefile
@ -319,7 +319,7 @@ clean:
|
|||||||
- rm -f multibuild.log Config.h.orig
|
- rm -f multibuild.log Config.h.orig
|
||||||
- rm -rf docs/busybox _install $(PWD_LIB)
|
- rm -rf docs/busybox _install $(PWD_LIB)
|
||||||
- rm -f busybox.links loop.h *~ slist.mk core applet_source_list
|
- 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
|
distclean: clean
|
||||||
- rm -f busybox
|
- rm -f busybox
|
||||||
@ -343,17 +343,17 @@ dist release: distclean doc
|
|||||||
find busybox-$(VERSION)/ -type d \
|
find busybox-$(VERSION)/ -type d \
|
||||||
-name CVS \
|
-name CVS \
|
||||||
-print \
|
-print \
|
||||||
| xargs rm -rf; \
|
-exec rm -rf {} \; \
|
||||||
\
|
\
|
||||||
find busybox-$(VERSION)/ -type f \
|
find busybox-$(VERSION)/ -type f \
|
||||||
-name .cvsignore \
|
-name .cvsignore \
|
||||||
-print \
|
-print \
|
||||||
| xargs rm -f; \
|
-exec rm -f {} \; \
|
||||||
\
|
\
|
||||||
find busybox-$(VERSION)/ -type f \
|
find busybox-$(VERSION)/ -type f \
|
||||||
-name .\#* \
|
-name .\#* \
|
||||||
-print \
|
-print \
|
||||||
| xargs rm -f; \
|
-exec rm -f {} \; \
|
||||||
\
|
\
|
||||||
tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
|
tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user