git: a314e842d375 - stable/13 - mk: WITH_FOO=no now generates a warning

Warner Losh imp at FreeBSD.org
Sun Sep 12 16:35:31 UTC 2021


The branch stable/13 has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=a314e842d375839ae57fe73ec71bf8a7e83564fe

commit a314e842d375839ae57fe73ec71bf8a7e83564fe
Author:     Warner Losh <imp at FreeBSD.org>
AuthorDate: 2021-06-10 00:10:12 +0000
Commit:     Warner Losh <imp at FreeBSD.org>
CommitDate: 2021-09-12 15:56:16 +0000

    mk: WITH_FOO=no now generates a warning
    
    Many people are used to gnu configure's behavior of changing
    --with-foo=no to --without-foo. At the same time, several folks have
    WITH_FOO=no in their config files to enable this ironic form of the
    option because of an old meme from IRC, a mailing list or the forums (I
    forget which). Add a warning to allow to alert people w/o breaking POLA.
    
    Reviewed by:            allanjude, bdrewery, manu
    MFC After:              2 weeks
    Sponsored by:           Netflix
    Differential Revision:  https://reviews.freebsd.org/D30684
    
    (cherry picked from commit f4d987cd137cb2d0d54a3e35d9258ca7c175d291)
---
 share/mk/bsd.mkopt.mk | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/share/mk/bsd.mkopt.mk b/share/mk/bsd.mkopt.mk
index 5a9cf1b2f1be..98d23dd46c2a 100644
--- a/share/mk/bsd.mkopt.mk
+++ b/share/mk/bsd.mkopt.mk
@@ -36,6 +36,9 @@
 #
 .for var in ${__DEFAULT_YES_OPTIONS}
 .if !defined(MK_${var})
+.if defined(WITH_${var}) && ${WITH_${var}} == "no"
+.warning "Use WITHOUT_${var}=1 insetad of WITH_${var}=no"
+.endif
 .if defined(WITHOUT_${var})			# WITHOUT always wins
 MK_${var}:=	no
 .else
@@ -54,6 +57,9 @@ MK_${var}:=	yes
 #
 .for var in ${__DEFAULT_NO_OPTIONS}
 .if !defined(MK_${var})
+.if defined(WITH_${var}) && ${WITH_${var}} == "no"
+.warning "Use WITHOUT_${var}=1 insetad of WITH_${var}=no"
+.endif
 .if defined(WITH_${var}) && !defined(WITHOUT_${var}) # WITHOUT always wins
 MK_${var}:=	yes
 .else


More information about the dev-commits-src-branches mailing list