diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
commit | 5ec134d67dbba7a354689af359fb4dd92bc8cbec (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /www/ap-ssl | |
parent | 9d13f62cc158ce4d29412c1798882c83849d448b (diff) | |
download | pkgsrc-5ec134d67dbba7a354689af359fb4dd92bc8cbec.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'www/ap-ssl')
-rw-r--r-- | www/ap-ssl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/ap-ssl/Makefile b/www/ap-ssl/Makefile index e0b91d43eb1..39d83f71b85 100644 --- a/www/ap-ssl/Makefile +++ b/www/ap-ssl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.92 2005/10/19 20:33:44 bouyer Exp $ +# $NetBSD: Makefile,v 1.93 2005/12/05 20:51:10 rillig Exp $ DISTNAME= mod_ssl-2.8.25-1.3.34 PKGNAME= ap-ssl-2.8.25 @@ -13,7 +13,7 @@ COMMENT= SSL/TLS protocols module for Apache CONFLICTS= apache-1.3.[0-9] apache-*modssl-[0-9]* apache6-[0-9]* -BUILDLINK_DEPENDS.apache= apache>=1.3.33 +BUILDLINK_DEPENDS.apache+= apache>=1.3.33 USE_PKGINSTALL= yes APACHE_MODULE= yes @@ -25,7 +25,7 @@ CONFIGURE_ARGS+= --with-ssl=${SSLBASE} SSL_RPATH_LDFLAGS= ${LINKER_RPATH_FLAG} ${SSLBASE}/lib FIX_RPATH+= SSL_RPATH_LDFLAGS -MAKE_ENV+= SSL_RPATH_LDFLAGS="${SSL_RPATH_LDFLAGS}" +MAKE_ENV+= SSL_RPATH_LDFLAGS=${SSL_RPATH_LDFLAGS:Q} PKG_SYSCONFVAR= apache PKG_SYSCONFSUBDIR?= httpd |