From: François Revol Date: Sat, 30 Oct 2010 15:42:00 +0000 (+0200) Subject: Makefile: move include for config.mk up X-Git-Tag: v2010.12-rc2~55 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a98ae78fe17a1ab82ecf62fd4e2771d3c492e111;p=u-boot Makefile: move include for config.mk up Reorder including config.mk before the HOSTCC check, so HOSTCC is actually defined when checking for it. Signed-off-by: François Revol Cleaned up commit message Signed-off-by: Wolfgang Denk --- diff --git a/tools/Makefile b/tools/Makefile index 619c9f2acb..623f9086f3 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -23,6 +23,12 @@ TOOLSUBDIRS = +# +# Include this after HOSTOS HOSTARCH check +# so that we can act intelligently. +# +include $(TOPDIR)/config.mk + # # toolchains targeting win32 generate .exe files # @@ -32,12 +38,6 @@ else SFX = endif -# -# Include this after HOSTOS HOSTARCH check -# so that we can act intelligently. -# -include $(TOPDIR)/config.mk - # Enable all the config-independent tools ifneq ($(HOST_TOOLS_ALL),) CONFIG_LCD_LOGO = y