From: Peter Korsgaard Date: Wed, 3 Nov 2010 23:00:00 +0000 (+0100) Subject: Makefile: fix release target with make 3.81 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0dca70656855c1a343f0351e4e69ac6a2c112472;p=buildroot.git 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 --- diff --git a/Makefile b/Makefile index dda78fe1b5..3664c96030 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)