diff options
author | rillig <rillig@pkgsrc.org> | 2020-05-03 12:55:04 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-05-03 12:55:04 +0000 |
commit | 01ac1514d4d12adf0fb821fbb32cc807cbc1b0c0 (patch) | |
tree | 5cd08343cec8c103a689593a92a1907c3722aef4 /cross/avr-gcc | |
parent | 7cf11f52f73e5566f76c5fd6999938a3de5a859d (diff) | |
download | pkgsrc-01ac1514d4d12adf0fb821fbb32cc807cbc1b0c0.tar.gz |
cross/avr-gcc: skip portability check, allow unknown configure options
Diffstat (limited to 'cross/avr-gcc')
-rw-r--r-- | cross/avr-gcc/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cross/avr-gcc/Makefile b/cross/avr-gcc/Makefile index 7428613d514..71a85ad8249 100644 --- a/cross/avr-gcc/Makefile +++ b/cross/avr-gcc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2019/08/11 13:18:16 wiz Exp $ +# $NetBSD: Makefile,v 1.44 2020/05/03 12:55:04 rillig Exp $ DISTNAME= gcc-4.8.3 PKGNAME= ${DISTNAME:C/^/avr-/} @@ -13,15 +13,16 @@ LICENSE= gnu-gpl-v2 AND gnu-gpl-v3 AND gnu-lgpl-v2 AND gnu-lgpl-v3 DEPENDS+= avr-binutils-[0-9]*:../../cross/avr-binutils -.include "../../mk/bsd.prefs.mk" - GNU_CONFIGURE= yes +GNU_CONFIGURE_STRICT= no # has sub-configures USE_LANGUAGES= c c++03 USE_TOOLS+= bison gmake lex perl tar msgfmt autoconf pod2man USE_PKGLOCALEDIR= yes USE_GNU_CONFIGURE_HOST= no +CHECK_PORTABILITY_SKIP+= contrib/* + CONFIGURE_ARGS+= --target=avr CONFIGURE_ARGS+= --enable-languages='c c++' CONFIGURE_ARGS+= --disable-nls --disable-lto |