summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPeter Korsgaard2010-11-04 00:00:00 +0100
committerPeter Korsgaard2010-11-04 00:03:52 +0100
commit0dca70656855c1a343f0351e4e69ac6a2c112472 (patch)
treed3b8ededdaacd70c35abee6a108421dc8167617f /Makefile
parenttoolchain/crosstool-ng: use global BR2 version string (diff)
downloadbuildroot-0dca70656855c1a343f0351e4e69ac6a2c112472.tar.gz
buildroot-0dca70656855c1a343f0351e4e69ac6a2c112472.tar.xz
buildroot-0dca70656855c1a343f0351e4e69ac6a2c112472.zip
Makefile: fix release target with make 3.81
It seems that target-specific variables don't mix with target rules. Thanks to Yann for helping debugging the issue. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index dda78fe1b..3664c9603 100644
--- a/Makefile
+++ b/Makefile
@@ -638,6 +638,8 @@ help:
@echo
release: OUT=buildroot-$(BR2_VERSION)
+
+release:
git archive --format=tar --prefix=$(OUT)/ master|gzip -9 >$(OUT).tar.gz
.PHONY: $(noconfig_targets)