Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-07 03:17:16 +0400
committerEric Andersen <andersen@codepoet.org>2000-07-07 03:17:16 +0400
commitb0b732bfe45a5c16d7031851f056b4138074db64 (patch)
treea970787ebee26dca36cf95936c008851aa836315 /Makefile
parent03f4c27bd6b79dcc953f0ee0d8c158d7ebe9cad8 (diff)
Update 'make release' to remove all the .#filename files
the CVS leaves lying about... -Erik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e24193c3a..bdef05a13 100644
--- a/Makefile
+++ b/Makefile
@@ -181,4 +181,9 @@ dist release: distclean doc
-print \
| xargs rm -f; \
\
+ find busybox-$(VERSION)/ -type f \
+ -name .\#* \
+ -print \
+ | xargs rm -f; \
+ \
tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;