From: Denys Vlasenko Date: Sun, 28 Mar 2010 18:26:40 +0000 (+0200) Subject: "make release" should delete .git directory too X-Git-Tag: 1_17_0~348 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=603884b07e4ffffa1c00c5982d7583f6a136f1c2;p=oweals%2Fbusybox.git "make release" should delete .git directory too Signed-off-by: Denys Vlasenko --- diff --git a/Makefile.custom b/Makefile.custom index fb9ec671c..ecba6bd79 100644 --- a/Makefile.custom +++ b/Makefile.custom @@ -64,6 +64,10 @@ release: distclean -name .svn \ -print \ -exec rm -r -f {} \; ; \ + find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type d \ + -name .git \ + -print \ + -exec rm -r -f {} \; ; \ find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type f \ -name .\#* \ -print \