diff options
author | tron <tron> | 2010-06-20 16:23:56 +0000 |
---|---|---|
committer | tron <tron> | 2010-06-20 16:23:56 +0000 |
commit | 8edce02421df82cb88bbd039b6742ef5d1ae293e (patch) | |
tree | 6677a0928b10b07a6020dd6efc20215c17f6f82c /cross | |
parent | b4ed7f3912dd84d61925f4ce2bc015d01de637cd (diff) | |
download | pkgsrc-8edce02421df82cb88bbd039b6742ef5d1ae293e.tar.gz |
Don't treat compiler warnings as errors. Newer versions of GCC produce
a lot of "format not a string literal and no format arguments" warnings
while building this package.
Diffstat (limited to 'cross')
-rw-r--r-- | cross/avr-binutils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cross/avr-binutils/Makefile b/cross/avr-binutils/Makefile index 7c2ff1cc263..95159550cfc 100644 --- a/cross/avr-binutils/Makefile +++ b/cross/avr-binutils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2009/08/27 15:26:41 hasso Exp $ +# $NetBSD: Makefile,v 1.16 2010/06/20 16:23:56 tron Exp $ DISTNAME= binutils-2.19.1 PKGNAME= avr-binutils-2.19.1 @@ -16,7 +16,7 @@ GNU_CONFIGURE= yes USE_PKGLOCALEDIR= yes USE_GNU_CONFIGURE_HOST= no -CONFIGURE_ARGS+= --target=avr +CONFIGURE_ARGS+= --disable-werror --target=avr # Prevent the need to run texi2pod.pl and pod2man hence # the need for perl as build dependency. |