diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-08-17 00:03:23 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-08-17 00:03:23 +0000 |
commit | 4306bb13f69c96f5afa6f82b8e4645baa9c5d49a (patch) | |
tree | 088902a52b135767d4f03fb75d9dea21ae4682d9 | |
parent | 6ebbc7414e6699c6ee3edb9dff5c8adda81590ed (diff) |
When doing 'make release' nuke the .svn directories, not the
CVS dirs (since they are no longer present)
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 {} \; ; \ \ |