Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/configure mk/configure/gnu-configure.mk: disable bu...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5ea63ab76150
branches:  trunk
changeset: 432371:5ea63ab76150
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Thu May 21 15:29:25 2020 +0000

description:
mk/configure/gnu-configure.mk: disable built-in option check

The rewritten check for unknown configure options already checks for
options that are not defined anywhere.  After that, the configure scripts
don't need to check for these options anymore since all remaining options
are known to the package, in at least one of its configure scripts.

diffstat:

 mk/configure/gnu-configure.mk |  6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diffs (20 lines):

diff -r 2eda2ec8758e -r 5ea63ab76150 mk/configure/gnu-configure.mk
--- a/mk/configure/gnu-configure.mk     Thu May 21 15:15:56 2020 +0000
+++ b/mk/configure/gnu-configure.mk     Thu May 21 15:29:25 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: gnu-configure.mk,v 1.23 2020/05/21 13:42:10 rillig Exp $
+# $NetBSD: gnu-configure.mk,v 1.24 2020/05/21 15:29:25 rillig Exp $
 #
 # Package-settable variables:
 #
@@ -205,9 +205,7 @@
 .endif
 
 GNU_CONFIGURE_STRICT?= warn
-.if ${GNU_CONFIGURE_STRICT:M[yY][eE][sS]}
-CONFIGURE_ARGS+=       --enable-option-checking=fatal
-.elif ${GNU_CONFIGURE_STRICT} == warn
+.if ${GNU_CONFIGURE_STRICT:tl} != no
 CONFIGURE_ARGS+=       --enable-option-checking=yes
 .endif
 



Home | Main Index | Thread Index | Old Index