From: Eric Andersen Date: Wed, 17 Aug 2005 00:03:23 +0000 (-0000) Subject: When doing 'make release' nuke the .svn directories, not the X-Git-Tag: 1_1_0~818 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4306bb13f69c96f5afa6f82b8e4645baa9c5d49a;p=oweals%2Fbusybox.git When doing 'make release' nuke the .svn directories, not the CVS dirs (since they are no longer present) --- diff --git a/Makefile b/Makefile index 920cbbecf..187f3fcd6 100644 --- a/Makefile +++ b/Makefile @@ -299,7 +299,7 @@ release: distclean #doc cp -a busybox $(PROG)-$(VERSION); \ \ find $(PROG)-$(VERSION)/ -type d \ - -name CVS \ + -name .svn \ -print \ -exec rm -rf {} \; ; \ \