pkgsrc-Changes archive

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

CVS commit: pkgsrc/mk/configure



Module Name:    pkgsrc
Committed By:   rillig
Date:           Thu May 21 15:29:25 UTC 2020

Modified Files:
        pkgsrc/mk/configure: gnu-configure.mk

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/mk/configure/gnu-configure.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mk/configure/gnu-configure.mk
diff -u pkgsrc/mk/configure/gnu-configure.mk:1.23 pkgsrc/mk/configure/gnu-configure.mk:1.24
--- pkgsrc/mk/configure/gnu-configure.mk:1.23   Thu May 21 13:42:10 2020
+++ pkgsrc/mk/configure/gnu-configure.mk        Thu May 21 15:29:25 2020
@@ -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 @@ configure-scripts-osdep:
 .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