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 | 458893e620146aa5a8f220a1c64faa5c6ddb30ac (patch) | |
tree | 4cdc402d95158d7b42eb0723f7a13f0d29ef5afc /package/devel | |
parent | cb119e2a69ddf235255398175ecaba7d8081b775 (diff) | |
download | upstream-458893e620146aa5a8f220a1c64faa5c6ddb30ac.tar.gz upstream-458893e620146aa5a8f220a1c64faa5c6ddb30ac.tar.bz2 upstream-458893e620146aa5a8f220a1c64faa5c6ddb30ac.zip |
binutils: fix build with gcc 4.9
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 42707
Diffstat (limited to 'package/devel')
-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 \ |