diff options
author | Eric Andersen | 2005-08-17 00:01:38 +0000 |
---|---|---|
committer | Eric Andersen | 2005-08-17 00:01:38 +0000 |
commit | d3986eb7ec5fff7b3c3edc386e2b18be3b68c16c (patch) | |
tree | fb54c66d7fd3c23ae827280dbacb3098e5114f8e | |
parent | 9e78a1772d3ea4b5537e791d2066ff9fba7bd201 (diff) | |
download | busybox-d3986eb7ec5fff7b3c3edc386e2b18be3b68c16c.zip busybox-d3986eb7ec5fff7b3c3edc386e2b18be3b68c16c.tar.gz |
When doing 'make release' nuke the .svn directories, not the1_01
CVS dirs (since they are no longer present)
-rw-r--r-- | busybox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/busybox/Makefile b/busybox/Makefile index 0bfb700..0f91679 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 {} \; ; \ \ |