diff options
author | ngie <ngie@FreeBSD.org> | 2017-09-08 04:48:25 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-09-08 04:48:25 +0000 |
commit | 6a27b9f40748fb9c1de9e48dff0446b43bc4bdc8 (patch) | |
tree | 79cd9bcea4f7d1a5c2760c2b69dd167714a38034 /share/mk | |
parent | e8f92585364e857e74459e9a885c736f0ae39f81 (diff) | |
download | FreeBSD-src-6a27b9f40748fb9c1de9e48dff0446b43bc4bdc8.zip FreeBSD-src-6a27b9f40748fb9c1de9e48dff0446b43bc4bdc8.tar.gz |
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.
Diffstat (limited to 'share/mk')
-rw-r--r-- | share/mk/src.opts.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index e15053d..4dedaca 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -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 |