summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-02-08 00:34:41 +0000
committerEric Andersen <andersen@codepoet.org>2005-02-08 00:34:41 +0000
commitbc8dffb046a43a16cf928034dea93d4bac1043e0 (patch)
treecec31e6b96d41c1cf894afb6e4a237711560e5cc /Makefile
parent214557d8bf7b75a1b4244d388ec0a2bd333d9780 (diff)
Update release target for subversion
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 03c9b739c..b2c173fd5 100644
--- a/Makefile
+++ b/Makefile
@@ -211,7 +211,7 @@ endif
-@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
chmod 755 $$i; chmod 644 $$i/*.h > /dev/null 2>&1; \
done;
- -find $(PREFIX)$(DEVEL_PREFIX) -name CVS | xargs $(RM) -r;
+ -find $(PREFIX)$(DEVEL_PREFIX) -name .svn | xargs $(RM) -r;
-chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1.\2/'` $(PREFIX)$(DEVEL_PREFIX)
ifeq ($(strip $(HAVE_SHARED)),y)
for i in `find lib/ -type l -name 'lib[a-zA-Z]*.so' | \
@@ -358,7 +358,7 @@ release: distclean
find uClibc-$(VERSION)/ -type f \
-name .\#* -exec $(RM) -r {} \; ; \
find uClibc-$(VERSION)/ -type d \
- -name CVS -exec $(RM) -r {} \; ; \
+ -name .svn -exec $(RM) -r {} \; ; \
\
tar -cvzf uClibc-$(VERSION).tar.gz uClibc-$(VERSION)/;