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 | b71a1d488b6b45e0a968a4c149990c25b6a09215 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /mail/postgrey | |
parent | 624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff) | |
download | pkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.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 'mail/postgrey')
-rw-r--r-- | mail/postgrey/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/mail/postgrey/Makefile b/mail/postgrey/Makefile index 2cfd05d2227..f281fdacb4e 100644 --- a/mail/postgrey/Makefile +++ b/mail/postgrey/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2005/08/23 11:48:49 rillig Exp $ +# $NetBSD: Makefile,v 1.10 2005/12/05 20:50:35 rillig Exp $ # DISTNAME= postgrey-1.21 -PKGREVISION= # empty CATEGORIES= mail MASTER_SITES= http://isg.ee.ethz.ch/tools/postgrey/pub/ \ http://isg.ee.ethz.ch/tools/postgrey/pub/old/ @@ -45,10 +44,10 @@ OWN_DIRS+= ${PREFIX}/${EGDIR} OWN_DIRS_PERMS+= ${POSTGREY_DBDIR} \ ${POSTGREY_USER} ${POSTGREY_GROUP} 0775 -FILES_SUBST+= PERL="${PERL5}" +FILES_SUBST+= PERL=${PERL5:Q} -PLIST_SUBST+= DOCDIR="${DOCDIR}" -PLIST_SUBST+= EGDIR="${EGDIR}" +PLIST_SUBST+= DOCDIR=${DOCDIR:Q} +PLIST_SUBST+= EGDIR=${EGDIR:Q} SUBST_CLASSES+= postgrey |