summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-01-25 14:33:03 +0000
committerEric Andersen <andersen@codepoet.org>2003-01-25 14:33:03 +0000
commitaa1a0cd1cf9b9795fda883dae9ac0873644be7ae (patch)
tree651843c3fe109adc1956e16cbf09c4f6b2de7060 /Makefile
parent69af95d62a70bf8dab5233513038261ddcab2b2a (diff)
Fix the 'make release' target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e25fc269c..c439c09da 100644
--- a/Makefile
+++ b/Makefile
@@ -384,10 +384,12 @@ release: distclean
cd ..; \
rm -rf uClibc-$(VERSION); \
cp -a uClibc uClibc-$(VERSION); \
- find uClibc-$(VERSION)/ -type d \
+ find uClibc-$(VERSION)/ -type f \
-name .\#* -exec rm -rf {} \; ; \
+ find uClibc-$(VERSION)/ -type d \
+ -name CVS -exec rm -rf {} \; ; \
\
- tar -cvzf uClibc-$(VERSION).tar.gz --exclude CVS uClibc-$(VERSION)/;
+ tar -cvzf uClibc-$(VERSION).tar.gz uClibc-$(VERSION)/;
endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)