From: Shinya Kuribayashi Date: Fri, 12 Sep 2008 00:20:46 +0000 (+0200) Subject: make: Remove redundant __ARM__ addition when cross-compiling on *BSD X-Git-Tag: v2008.10-rc2~10^2~4 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=03db53335c8eba656a7c44d1555b1a4514383e33;p=u-boot make: Remove redundant __ARM__ addition when cross-compiling on *BSD __ARM__ is given by arm_config.mk automatically. Signed-off-by: Shinya Kuribayashi --- diff --git a/config.mk b/config.mk index c225df1a43..5a9334c6f6 100644 --- a/config.mk +++ b/config.mk @@ -44,15 +44,6 @@ PLATFORM_RELFLAGS = PLATFORM_CPPFLAGS = PLATFORM_LDFLAGS = -ifeq ($(ARCH),arm) -ifeq ($(CROSS_COMPILE),powerpc-netbsd-) -PLATFORM_CPPFLAGS+= -D__ARM__ -endif -ifeq ($(CROSS_COMPILE),powerpc-openbsd-) -PLATFORM_CPPFLAGS+= -D__ARM__ -endif -endif - ######################################################################### CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \