diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-16 07:43:53 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-16 07:43:53 +0000 |
commit | 53b55ac08d55bed26b2d95a4a27549cd1caa947e (patch) | |
tree | 39e425aaa43a101ceb41c1d381e54613d0ff3ffb | |
parent | c36c2ba598a68b96e2c917b1752d45c6dd45c135 (diff) |
Fix the make release target.
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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)/; |