Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Aug 2017 21:38:15 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r321952 - head/share/mk
Message-ID:  <201708022138.v72LcF97048040@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708022138.v72LcF97048040>