From: Masahiro Yamada Date: Mon, 3 Mar 2014 02:06:18 +0000 (+0900) Subject: kbuild: fix "tools-all" target X-Git-Tag: accepted/tizen/generic/20140310.101015~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ec8b4efce83e7739720afbbf6a19937704eb8d5;p=kernel%2Fu-boot.git kbuild: fix "tools-all" target The top Makefile must export HOST_TOOLS_ALL to use it in tools/Makefile. Signed-off-by: Masahiro Yamada Tested-by: Heiko Schocher Acked-by: Heiko Schocher --- diff --git a/Makefile b/Makefile index 0167a6c..e165bea 100644 --- a/Makefile +++ b/Makefile @@ -1152,7 +1152,7 @@ checkarmreloc: u-boot env: scripts_basic $(Q)$(MAKE) $(build)=tools/$@ -tools-all: HOST_TOOLS_ALL=y +tools-all: export HOST_TOOLS_ALL=y tools-all: env tools ; .PHONY : CHANGELOG