diff options
author | bapt <bapt@FreeBSD.org> | 2013-12-16 07:31:36 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-12-16 07:31:36 +0800 |
commit | 9a37accf9a06de2e56ee7c162f35688e4105033b (patch) | |
tree | 45918b848a2f9a827f5c0698ea288370bd744247 /Mk/bsd.options.mk | |
parent | 3f90373ef805dab9b3277db065bcea1188f9e79a (diff) | |
download | freebsd-ports-gnome-9a37accf9a06de2e56ee7c162f35688e4105033b.tar.gz freebsd-ports-gnome-9a37accf9a06de2e56ee7c162f35688e4105033b.tar.zst freebsd-ports-gnome-9a37accf9a06de2e56ee7c162f35688e4105033b.zip |
Do not set again WITHOUT_NLS in old backward compatibility if NLS is in OPTIONS_UNSET
Reported by: eadler
Diffstat (limited to 'Mk/bsd.options.mk')
-rw-r--r-- | Mk/bsd.options.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.options.mk b/Mk/bsd.options.mk index 0aa15e26dcb9..192204fec82c 100644 --- a/Mk/bsd.options.mk +++ b/Mk/bsd.options.mk @@ -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 |