svn commit: r321952 - head/share/mk
Ngie Cooper
ngie at FreeBSD.org
Wed Aug 2 21:38:16 UTC 2017
Author: ngie
Date: Wed Aug 2 21:38:15 2017
New Revision: 321952
URL: https://svnweb.freebsd.org/changeset/base/321952
Log:
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.
MFC after: 1 month
Modified:
head/share/mk/src.opts.mk
Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk Wed Aug 2 21:31:46 2017 (r321951)
+++ head/share/mk/src.opts.mk Wed Aug 2 21:38:15 2017 (r321952)
@@ -376,6 +376,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-all
mailing list