diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-02-14 14:11:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-02-14 14:11:12 +0000 |
commit | df0643a4089d4cec8c475701d8602c8dbba6237c (patch) | |
tree | a992936a692cd10875ca97e053bb1e88f31348f2 /package/opkg/Makefile | |
parent | 18441c327ad0995d62da0a115c230bc67a0fe8e5 (diff) | |
download | upstream-df0643a4089d4cec8c475701d8602c8dbba6237c.tar.gz upstream-df0643a4089d4cec8c475701d8602c8dbba6237c.tar.bz2 upstream-df0643a4089d4cec8c475701d8602c8dbba6237c.zip |
opkg: apparently array bounds checking is gcc 4.3 specific, move -Wno-array-bounds into TARGET_CFLAGS instead of a patch and make it conditional
SVN-Revision: 14508
Diffstat (limited to 'package/opkg/Makefile')
-rw-r--r-- | package/opkg/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/opkg/Makefile b/package/opkg/Makefile index 91db724767..6a857905b7 100644 --- a/package/opkg/Makefile +++ b/package/opkg/Makefile @@ -40,7 +40,7 @@ define Package/opkg/conffiles /etc/opkg.conf endef -TARGET_CFLAGS += $(FPIC) +TARGET_CFLAGS += $(FPIC) $(if $(CONFIG_GCC_VERSION_4_3),-Wno-array-bounds) EXTRA_CFLAGS+=-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/lib EXTRA_LDFLAGS+=-L$(STAGING_DIR)/usr/lib -Wl,-rpath-link,$(STAGING_DIR)/usr/lib |