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 0bfb700..0f91679 100644
--- a/busybox/Makefile
+++ b/busybox/Makefile
@@ -291,7 +291,7 @@
 	cp -a busybox $(PROG)-$(VERSION); \
 	\
 	find $(PROG)-$(VERSION)/ -type d \
-		-name CVS \
+		-name .svn \
 		-print \
 		-exec rm -rf {} \; ; \
 	\