diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
commit | 51cc30a69f6ed85b6e1c747e7d0e7c630f9cc50a (patch) | |
tree | 1390f4897127f87b9dc78eb04234494436dbf1a4 /www/lighttpd | |
parent | f3129e07256e493f4c4fbcb6d3b8a8b56805108b (diff) | |
download | pkgsrc-51cc30a69f6ed85b6e1c747e7d0e7c630f9cc50a.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.mk | 6 |
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 |