svn commit: r323303 - stable/11/share/mk
Ngie Cooper
ngie at FreeBSD.org
Fri Sep 8 04:48:26 UTC 2017
Author: ngie
Date: Fri Sep 8 04:48:25 2017
New Revision: 323303
URL: https://svnweb.freebsd.org/changeset/base/323303
Log:
MFC r321952:
Allowing MK_NLS_CATALOGS to be enabled if MK_NLS == no doesn't make a whole lot
of sense. Anchor MK_NLS_CATALOGS being enabled off of MK_NLS.
Modified:
stable/11/share/mk/src.opts.mk
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/share/mk/src.opts.mk
==============================================================================
--- stable/11/share/mk/src.opts.mk Fri Sep 8 04:46:55 2017 (r323302)
+++ stable/11/share/mk/src.opts.mk Fri Sep 8 04:48:25 2017 (r323303)
@@ -362,6 +362,10 @@ MK_ATM:= no
MK_BLUETOOTH:= no
.endif
+.if ${MK_NLS} == "no"
+MK_NLS_CATALOGS:= no
+.endif
+
.if ${MK_OPENSSL} == "no"
MK_OPENSSH:= no
MK_KERBEROS:= no
More information about the svn-src-stable
mailing list