u-boot-brain/arch/powerpc
Masahiro Yamada 9b6e2c363f 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>
2014-03-04 12:15:30 -05:00
..
cpu Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx 2014-02-25 13:55:49 -05:00
include/asm driver/ifc:Change accessor function to take care of endianness 2014-02-03 08:38:51 -08:00
lib common: Add get_effective_memsize() to memsize.c 2014-02-21 11:06:13 -05:00
config.mk kbuild: fix CROSS_COMPILE settings in config.mk 2014-03-04 12:15:30 -05:00