summaryrefslogtreecommitdiff
path: root/package/opkg/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-02-14 14:11:12 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-02-14 14:11:12 +0000
commitdf0643a4089d4cec8c475701d8602c8dbba6237c (patch)
treea992936a692cd10875ca97e053bb1e88f31348f2 /package/opkg/Makefile
parent18441c327ad0995d62da0a115c230bc67a0fe8e5 (diff)
downloadmtk-20170518-df0643a4089d4cec8c475701d8602c8dbba6237c.zip
mtk-20170518-df0643a4089d4cec8c475701d8602c8dbba6237c.tar.gz
mtk-20170518-df0643a4089d4cec8c475701d8602c8dbba6237c.tar.bz2
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/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/opkg/Makefile b/package/opkg/Makefile
index 91db724..6a85790 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