diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-02 22:06:36 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-02 22:06:36 +0100 |
commit | 17f4aca556307ddc7f86dc0a781eabef8360f732 (patch) | |
tree | 8e318da2ba787cec9abb8edcd7c8dab2a8cf9e37 | |
parent | c44539fcd32a0861f9f540253b5e914028821bd7 (diff) |
Makefile.custom: make "make release" delete .gitignore files too
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | Makefile.custom | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.custom b/Makefile.custom index 3561e5768..8c95ef2d4 100644 --- a/Makefile.custom +++ b/Makefile.custom @@ -74,6 +74,10 @@ release: distclean -print \ -exec rm -r -f {} \; ; \ find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type f \ + -name .gitignore \ + -print \ + -exec rm -f {} \; ; \ + find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type f \ -name .\#* \ -print \ -exec rm -f {} \; ; \ |