From: Eric Andersen Date: Wed, 17 Aug 2005 00:01:38 +0000 (-0000) Subject: When doing 'make release' nuke the .svn directories, not the X-Git-Tag: 1_01^0 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d3986eb7ec5fff7b3c3edc386e2b18be3b68c16c;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/busybox/Makefile b/busybox/Makefile index 0bfb700b6..0f91679c7 100644 --- a/busybox/Makefile +++ b/busybox/Makefile @@ -291,7 +291,7 @@ release: distclean #doc cp -a busybox $(PROG)-$(VERSION); \ \ find $(PROG)-$(VERSION)/ -type d \ - -name CVS \ + -name .svn \ -print \ -exec rm -rf {} \; ; \ \