From mboxrd@z Thu Jan 1 00:00:00 1970 From: Shinya Kuribayashi Date: Sun, 31 Aug 2008 05:38:41 +0900 Subject: [U-Boot] [PATCH] make: Remove redundant __ARM__ addition when cross-compiling on *BSD In-Reply-To: <48B9AF70.9010203@ruby.dti.ne.jp> References: <48B9AF70.9010203@ruby.dti.ne.jp> Message-ID: <48B9AFD1.1000607@ruby.dti.ne.jp> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de __ARM__ is given by arm_config.mk automatically. Signed-off-by: Shinya Kuribayashi --- config.mk | 9 --------- 1 files changed, 0 insertions(+), 9 deletions(-) diff --git a/config.mk b/config.mk index c225df1..5a9334c 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; \