diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-06-06 09:12:56 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-06-06 09:12:56 +0800 |
commit | 5769ba85490bc68d0e89796eee56dc29ea4d72b1 (patch) | |
tree | 39553f947ea15e87424f98d2fdb9bd5e57b524ef /www/squid | |
parent | 4d80a1f9cb35c0b452b124eb8cf71bb6028bc5a9 (diff) | |
download | freebsd-ports-gnome-5769ba85490bc68d0e89796eee56dc29ea4d72b1.tar.gz freebsd-ports-gnome-5769ba85490bc68d0e89796eee56dc29ea4d72b1.tar.zst freebsd-ports-gnome-5769ba85490bc68d0e89796eee56dc29ea4d72b1.zip |
Fix options conversion with bmake
Diffstat (limited to 'www/squid')
-rw-r--r-- | www/squid/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/squid/Makefile b/www/squid/Makefile index c10a627809a9..59082bbd4e1f 100644 --- a/www/squid/Makefile +++ b/www/squid/Makefile @@ -239,7 +239,7 @@ basic_auth+= SASL libexec+= sasl_auth .endif # POLA: allow the old global make.conf(5) (pre src.conf(5)) defines, too: -.if ${PORT_OPTIONS:MNIS_AUTH) && !defined(NO_NIS) && !defined(WITHOUT_NIS} +.if ${PORT_OPTIONS:MNIS_AUTH} && !defined(NO_NIS) && !defined(WITHOUT_NIS) basic_auth+= YP libexec+= yp_auth .endif |