Fix the make release target.

This commit is contained in:
Eric Andersen 2001-03-16 07:43:53 +00:00
parent c36c2ba598
commit 53b55ac08d

View File

@ -356,17 +356,17 @@ dist release: distclean doc
find busybox-$(VERSION)/ -type d \ find busybox-$(VERSION)/ -type d \
-name CVS \ -name CVS \
-print \ -print \
-exec rm -rf {} \; \ -exec rm -rf {} \; ; \
\ \
find busybox-$(VERSION)/ -type f \ find busybox-$(VERSION)/ -type f \
-name .cvsignore \ -name .cvsignore \
-print \ -print \
-exec rm -f {} \; \ -exec rm -f {} \; ; \
\ \
find busybox-$(VERSION)/ -type f \ find busybox-$(VERSION)/ -type f \
-name .\#* \ -name .\#* \
-print \ -print \
-exec rm -f {} \; \ -exec rm -f {} \; ; \
\ \
tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/; tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;