From 8ab57bf9338f3a47683294aed6425f39828cbf80 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Tue, 17 Sep 2013 13:42:07 +0200 Subject: [PATCH] Makefile: release: create tarball from current branch, not master To support stable bugfix releases. Signed-off-by: Peter Korsgaard --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 70749ef65..45444c85b 100644 --- a/Makefile +++ b/Makefile @@ -841,7 +841,7 @@ release: OUT=buildroot-$(BR2_VERSION) # Create release tarballs. We need to fiddle a bit to add the generated # documentation to the git output release: - git archive --format=tar --prefix=$(OUT)/ master > $(OUT).tar + git archive --format=tar --prefix=$(OUT)/ HEAD > $(OUT).tar $(MAKE) O=$(OUT) manual-html manual-txt manual-pdf tar rf $(OUT).tar $(OUT) gzip -9 -c < $(OUT).tar > $(OUT).tar.gz