diff options
author | rillig <rillig@pkgsrc.org> | 2020-04-26 09:47:39 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-04-26 09:47:39 +0000 |
commit | af5cc22e5dc5d15dda5495d1e9dc6ca0481e6d63 (patch) | |
tree | 29dfe0ae797408d51078fe9e95121bb794d9e70a /cross/freemint-binutils | |
parent | 92051d64ddc4841280e42732c59ae6bcce1c3321 (diff) | |
download | pkgsrc-af5cc22e5dc5d15dda5495d1e9dc6ca0481e6d63.tar.gz |
cross/*-binutils: allow unknown --enable-nls configure option
The top-level configure script does not know this option, but it calls
several sub-configures that all know it.
Diffstat (limited to 'cross/freemint-binutils')
-rw-r--r-- | cross/freemint-binutils/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cross/freemint-binutils/Makefile b/cross/freemint-binutils/Makefile index 5862e7e323a..75d4f28ec85 100644 --- a/cross/freemint-binutils/Makefile +++ b/cross/freemint-binutils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2019/06/08 10:53:27 rillig Exp $ +# $NetBSD: Makefile,v 1.6 2020/04/26 09:47:40 rillig Exp $ DISTNAME= binutils-2.24 PKGNAME= cross-freemint-${DISTNAME} @@ -17,8 +17,9 @@ PATCH_DIST_STRIP= -p1 FREEMINT_PREFIX= ${PREFIX}/cross-freemint -USE_TOOLS+= gmake makeinfo -GNU_CONFIGURE= yes +USE_TOOLS+= gmake makeinfo +GNU_CONFIGURE= yes +GNU_CONFIGURE_STRICT= no # several sub-configures know --enable-nls OBJDIR= ../build CONFIGURE_DIRS= ${OBJDIR} |