summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2019-03-29 22:19:35 +0100
committerPeter Korsgaard <peter@korsgaard.com>2019-03-29 23:20:32 +0100
commit8d2bdda23f4128ab31172249cd31e963c53c55ba (patch)
treeb03c95b40b0fceb47b68d7fe4839d988846b0176
parent99298ec02d7207deb2c1a5634464123ec37191f9 (diff)
downloadbuildroot-8d2bdda23f4128ab31172249cd31e963c53c55ba.tar.gz
buildroot-8d2bdda23f4128ab31172249cd31e963c53c55ba.zip
Makefile: release: really drop build/docs from release tarball
Commit 15cb98769e4 (release: remove manual build files from release tarballs) tried to remove the temporary files from the manual build from the release tarball, but manual-clean only removes build/docs/manual and leaves build/docs in the tarball. Instead use 'make clean' to completely remove the build directory from the tarball. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> (cherry picked from commit c24faa81e859a773c72a84dca1eadffd1ddeffcf) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2b91d40919..5098acee0e 100644
--- a/Makefile
+++ b/Makefile
@@ -1170,7 +1170,7 @@ release: OUT = buildroot-$(BR2_VERSION)
release:
git archive --format=tar --prefix=$(OUT)/ HEAD > $(OUT).tar
$(MAKE) O=$(OUT) manual-html manual-text manual-pdf
- $(MAKE) O=$(OUT) manual-clean
+ $(MAKE) O=$(OUT) clean
tar rf $(OUT).tar $(OUT)
gzip -9 -c < $(OUT).tar > $(OUT).tar.gz
bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2
OpenPOWER on IntegriCloud