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 \
-name CVS \
-print \
-exec rm -rf {} \; \
-exec rm -rf {} \; ; \
\
find busybox-$(VERSION)/ -type f \
-name .cvsignore \
-print \
-exec rm -f {} \; \
-exec rm -f {} \; ; \
\
find busybox-$(VERSION)/ -type f \
-name .\#* \
-print \
-exec rm -f {} \; \
-exec rm -f {} \; ; \
\
tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;