From: Masahiro Yamada Date: Mon, 3 Mar 2014 02:06:18 +0000 (+0900) Subject: kbuild: fix "tools-all" target X-Git-Tag: v2014.04-rc2~34 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1ec8b4efce83e7739720afbbf6a19937704eb8d5;p=u-boot 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 0167a6c141..e165bea20e 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