aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-16 07:43:53 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-16 07:43:53 +0000
commit53b55ac08d55bed26b2d95a4a27549cd1caa947e (patch)
tree39e425aaa43a101ceb41c1d381e54613d0ff3ffb /Makefile
parentc36c2ba598a68b96e2c917b1752d45c6dd45c135 (diff)
downloadbusybox-53b55ac08d55bed26b2d95a4a27549cd1caa947e.tar.gz
Fix the make release target.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3ce823786..8af079062 100644
--- a/Makefile
+++ b/Makefile
@@ -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)/;