summaryrefslogtreecommitdiffstats
path: root/arch/blackfin
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-02-28 14:33:30 +0900
committerTom Rini <trini@ti.com>2014-03-04 12:15:30 -0500
commit9b6e2c363f2686d6f7bf61fbe58b7591b71d3e8b (patch)
treeaba046ec8f727fe744034100c5916af4186d4fd8 /arch/blackfin
parenta86cf89c765d99c39b397abe3d9926ab3593f57a (diff)
downloadtalos-obmc-uboot-9b6e2c363f2686d6f7bf61fbe58b7591b71d3e8b.tar.gz
talos-obmc-uboot-9b6e2c363f2686d6f7bf61fbe58b7591b71d3e8b.zip
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>
Diffstat (limited to 'arch/blackfin')
-rw-r--r--arch/blackfin/config.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/blackfin/config.mk b/arch/blackfin/config.mk
index c752025aaf..adc97125b5 100644
--- a/arch/blackfin/config.mk
+++ b/arch/blackfin/config.mk
@@ -5,7 +5,9 @@
# SPDX-License-Identifier: GPL-2.0+
#
-CROSS_COMPILE ?= bfin-uclinux-
+ifeq ($(CROSS_COMPILE),)
+CROSS_COMPILE := bfin-uclinux-
+endif
CONFIG_STANDALONE_LOAD_ADDR ?= 0x1000 -m elf32bfin
OpenPOWER on IntegriCloud