summaryrefslogtreecommitdiff
path: root/mail/cucipop
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-05 20:49:47 +0000
committerrillig <rillig>2005-12-05 20:49:47 +0000
commitb4f920543059af038598712771c3211999ef42a6 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /mail/cucipop
parent5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff)
downloadpkgsrc-b4f920543059af038598712771c3211999ef42a6.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/cucipop')
-rw-r--r--mail/cucipop/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/cucipop/Makefile b/mail/cucipop/Makefile
index 2f9c69c7d73..7a21d713931 100644
--- a/mail/cucipop/Makefile
+++ b/mail/cucipop/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.23 2005/08/20 19:16:21 jlam Exp $
+# $NetBSD: Makefile,v 1.24 2005/12/05 20:50:29 rillig Exp $
#
DISTNAME= cucipop-1.31
@@ -17,8 +17,8 @@ USE_PKGINSTALL= YES
LICENSE= cucipop-license
-MAKE_ENV+= ROOT_USER="${ROOT_USER}"
-MAKE_ENV+= ROOT_GROUP="${ROOT_GROUP}"
+MAKE_ENV+= ROOT_USER=${ROOT_USER:Q}
+MAKE_ENV+= ROOT_GROUP=${ROOT_GROUP:Q}
REQD_DIRS+= ${PREFIX}/share/cucipop/bulletins
SPECIAL_PERMS+= ${PREFIX}/sbin/cucipop ${ROOT_USER} ${ROOT_GROUP} 2755
@@ -32,7 +32,7 @@ PKG_SUPPORTED_OPTIONS= db inet6
.if !empty(PKG_OPTIONS:Mdb)
BDB_ACCEPTED= db2
CFLAGS+= -DUSE_DB
-MAKE_ENV+= LIBS=${BDB_LIBS}
+MAKE_ENV+= LIBS=${BDB_LIBS:Q}
. include "../../mk/bdb.buildlink3.mk"
.endif