summaryrefslogtreecommitdiff
path: root/www/lighttpd
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-12-05 23:55:01 +0000
committerrillig <rillig@pkgsrc.org>2005-12-05 23:55:01 +0000
commit579e97796954edc2469fac176e855589e1dc2997 (patch)
tree1390f4897127f87b9dc78eb04234494436dbf1a4 /www/lighttpd
parenta86447cb0763e94327a0380243bb3a2cc0ecbb68 (diff)
downloadpkgsrc-579e97796954edc2469fac176e855589e1dc2997.tar.gz
Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
Diffstat (limited to 'www/lighttpd')
-rw-r--r--www/lighttpd/options.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/lighttpd/options.mk b/www/lighttpd/options.mk
index 69feaaed9a8..66f4011b0dc 100644
--- a/www/lighttpd/options.mk
+++ b/www/lighttpd/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2005/10/11 15:44:00 joerg Exp $
+# $NetBSD: options.mk,v 1.3 2005/12/05 23:55:23 rillig Exp $
PKG_OPTIONS_VAR = PKG_OPTIONS.lighttpd
PKG_SUPPORTED_OPTIONS= bzip fam gdbm inet6 ldap lua mysql ssl memcache
@@ -70,7 +70,7 @@ CONFIGURE_ARGS+= --with-memcache
.if !empty(PKG_OPTIONS:Mmysql)
. include "../../mk/mysql.buildlink3.mk"
MYSQL_CONFIG?= ${BUILDLINK_PREFIX.mysql-client}/bin/mysql_config
-CONFIGURE_ARGS+= --with-mysql=${MYSQL_CONFIG}
+CONFIGURE_ARGS+= --with-mysql=${MYSQL_CONFIG:Q}
.endif
###
@@ -78,5 +78,5 @@ CONFIGURE_ARGS+= --with-mysql=${MYSQL_CONFIG}
###
.if !empty(PKG_OPTIONS:Mssl)
. include "../../security/openssl/buildlink3.mk"
-CONFIGURE_ARGS+= --with-openssl=${SSLBASE}
+CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
.endif