summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahiro Yamada <[email protected]>2014-03-03 11:06:18 +0900
committerTom Rini <[email protected]>2014-03-04 12:15:31 -0500
commit1ec8b4efce83e7739720afbbf6a19937704eb8d5 (patch)
treefaf034d2a7f626919b230deaca80d16d39cb6a17
parente0708fb539b9b6eddba2c66ce7ff7fa3810aa04d (diff)
kbuild: fix "tools-all" target
The top Makefile must export HOST_TOOLS_ALL to use it in tools/Makefile. Signed-off-by: Masahiro Yamada <[email protected]> Tested-by: Heiko Schocher <[email protected]> Acked-by: Heiko Schocher <[email protected]>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0167a6c141a..e165bea20e2 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