From 1ecafc5f8dc2bf793436264200422aea89ae1c7c Mon Sep 17 00:00:00 2001 From: Nishanth Menon Date: Thu, 5 Jun 2008 19:45:14 +0200 Subject: [PATCH] 004-arm-makefile [Patch 04/17] U-Boot-V2:ARM: Remove unwanted flags from Makefile CFLAGS: "-D __ARM__" should have been "-D__ARM__". this breaks sparse check. Further -nostdinc in Makefile is redfined by commit ID:847934bc960ba1588c87e283118318dfdd78d4c0 This is unecessary as NOSTDINC_FLAGS defines it Signed-off-by: Nishanth Menon --- Makefile | 3 +-- arch/arm/Makefile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f175100d4..30516ce41 100644 --- a/Makefile +++ b/Makefile @@ -305,8 +305,7 @@ LINUXINCLUDE := -Iinclude \ $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) \ -include include/linux/autoconf.h -CPPFLAGS := -D__KERNEL__ -D__U_BOOT__ $(LINUXINCLUDE) -fno-builtin -ffreestanding \ - -nostdinc +CPPFLAGS := -D__KERNEL__ -D__U_BOOT__ $(LINUXINCLUDE) -fno-builtin -ffreestanding CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ -fno-strict-aliasing -fno-common -Os -pipe diff --git a/arch/arm/Makefile b/arch/arm/Makefile index c019a4a26..53853baf3 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -1,5 +1,5 @@ -CPPFLAGS += -D __ARM__ -fno-strict-aliasing +CPPFLAGS += -D__ARM__ -fno-strict-aliasing machine-$(CONFIG_ARCH_IMX) := imx