svn commit: r336595 - head/Mk

Baptiste Daroussin bapt at FreeBSD.org
Sun Dec 15 23:31:37 UTC 2013


Author: bapt
Date: Sun Dec 15 23:31:36 2013
New Revision: 336595
URL: http://svnweb.freebsd.org/changeset/ports/336595

Log:
  Do not set again WITHOUT_NLS in old backward compatibility if NLS is in OPTIONS_UNSET
  
  Reported by:	eadler

Modified:
  head/Mk/bsd.options.mk

Modified: head/Mk/bsd.options.mk
==============================================================================
--- head/Mk/bsd.options.mk	Sun Dec 15 23:22:33 2013	(r336594)
+++ head/Mk/bsd.options.mk	Sun Dec 15 23:31:36 2013	(r336595)
@@ -358,7 +358,7 @@ ALL_OPTIONS=	${OPTIONS_DEFINE}
 ### to be removed once old OPTIONS disappear
 .for opt in ${ALL_OPTIONS}
 .if empty(PORT_OPTIONS:M${opt})
-.   if !defined(WITH_${opt}) && !defined(WITHOUT_${opt})
+.   if !defined(WITH_${opt}) && !defined(WITHOUT_${opt}) && ${opt} != NLS
 WITHOUT_${opt}:=	true
 .   endif
 .else


More information about the svn-ports-head mailing list