commit | f0ac9e04db3e8d3eda1f711e4de5edf09aeeba2b | [log] [tgz] |
---|---|---|
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | Fri Feb 28 14:33:30 2014 +0900 |
committer | Tom Rini <trini@ti.com> | Tue Mar 04 12:15:30 2014 -0500 |
tree | aba046ec8f727fe744034100c5916af4186d4fd8 | |
parent | 933c7e0c661a810efd898e3dbe67d938ec6e2d4d [diff] |
kbuild: fix CROSS_COMPILE settings in config.mk The syntax CROSS_COMIPLE ?= <cross_compiler_prefix> does not work because config.mk is parsed after exporting CROSS_COMPILE. Like Linux Kernel's arch/$(ARCH)/Makefile, we must write as follows: ifeq ($(CROSS_COMPILE),) CROSS_COMPILE := <cross_compiler_prefix> endif Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>