diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-09-30 21:36:33 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-09-30 21:36:33 +0000 |
commit | 2b96480b58f5b5436caef507ee1dc6c63e8825b8 (patch) | |
tree | 1682a8358e7470b46ccd2a0618c518c19d3fa62d | |
parent | 9bbf4ef2c00282b562fb079d9aa88ae6fb5be082 (diff) | |
download | master-187ad058-2b96480b58f5b5436caef507ee1dc6c63e8825b8.tar.gz master-187ad058-2b96480b58f5b5436caef507ee1dc6c63e8825b8.tar.bz2 master-187ad058-2b96480b58f5b5436caef507ee1dc6c63e8825b8.zip |
binutils: fix build with gcc 4.9
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42707 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/devel/binutils/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/devel/binutils/Makefile b/package/devel/binutils/Makefile index e8d45d2d8b..381014e9d9 100644 --- a/package/devel/binutils/Makefile +++ b/package/devel/binutils/Makefile @@ -45,7 +45,7 @@ define Package/binutils/description The Binutils package contains a linker, an assembler, and other tools for handling object files endef -TARGET_CFLAGS += $(FPIC) +TARGET_CFLAGS += $(FPIC) -Wno-unused-value CONFIGURE_ARGS += \ --enable-shared \ |