summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-02-27 22:40:34 +0900
committerTom Rini <trini@ti.com>2014-03-04 12:15:30 -0500
commita86cf89c765d99c39b397abe3d9926ab3593f57a (patch)
tree4f47ffcbe82047481fe366a8d3a24e3d26429e51 /arch
parent6b9709d91488993a8d7945995778cc63a24065ef (diff)
downloadtalos-obmc-uboot-a86cf89c765d99c39b397abe3d9926ab3593f57a.tar.gz
talos-obmc-uboot-a86cf89c765d99c39b397abe3d9926ab3593f57a.zip
kbuild: consolidate PLATFORM_LIBS
We had switched to Kbuild so now we can specify PLATFORM_LIBS/PLATFORM_LIBGCC with relative path. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Tom Rini <trini@ti.com> Acked-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/config.mk9
1 files changed, 2 insertions, 7 deletions
diff --git a/arch/arm/config.mk b/arch/arm/config.mk
index 17b7408835..1db80be354 100644
--- a/arch/arm/config.mk
+++ b/arch/arm/config.mk
@@ -67,13 +67,8 @@ ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
# times. Also, the prefix needs to be different based on whether
# CONFIG_SPL_BUILD is defined or not. 'filter-out' the existing entry
# before adding the correct one.
-ifdef CONFIG_SPL_BUILD
-PLATFORM_LIBS := $(SPLTREE)/arch/arm/lib/eabi_compat.o \
- $(filter-out %/arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS))
-else
-PLATFORM_LIBS := $(OBJTREE)/arch/arm/lib/eabi_compat.o \
- $(filter-out %/arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS))
-endif
+PLATFORM_LIBS := arch/arm/lib/eabi_compat.o \
+ $(filter-out arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS))
endif
# needed for relocation
OpenPOWER on IntegriCloud