From 53b55ac08d55bed26b2d95a4a27549cd1caa947e Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 16 Mar 2001 07:43:53 +0000 Subject: [PATCH] Fix the make release target. --- Makefile | 6 +++--- 1 file 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)/;