diff options
author | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
commit | b4f920543059af038598712771c3211999ef42a6 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /security/pks | |
parent | 5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff) | |
download | pkgsrc-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 'security/pks')
-rw-r--r-- | security/pks/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/pks/Makefile b/security/pks/Makefile index 42b3de79698..e6cf4e7a186 100644 --- a/security/pks/Makefile +++ b/security/pks/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2005/10/23 19:59:54 adrianp Exp $ +# $NetBSD: Makefile,v 1.21 2005/12/05 20:50:58 rillig Exp $ DISTNAME= pks-0.9.4 PKGREVISION= 3 @@ -35,8 +35,8 @@ EGDIR= ${PREFIX}/share/examples CONF_FILES= ${EGDIR}/pksd.conf ${PKG_SYSCONFDIR}/pksd.conf RCD_SCRIPTS= pksd -FILES_SUBST+= PKS_USER=${PKS_USER} -FILES_SUBST+= PKS_GROUP=${PKS_GROUP} +FILES_SUBST+= PKS_USER=${PKS_USER:Q} +FILES_SUBST+= PKS_GROUP=${PKS_GROUP:Q} OWN_DIRS_PERMS+= ${PKS_HOME} ${PKS_USER} ${PKS_GROUP} 0770 OWN_DIRS_PERMS+= ${PKS_HOME}/db ${PKS_USER} ${PKS_GROUP} 0770 @@ -51,7 +51,7 @@ CONFIGURE_ARGS+= --localstatedir=${PKS_HOME} # CONFIGURE_ARGS+= --sysconfdir=${EGDIR} -SUBST_CLASSES= paths +SUBST_CLASSES+= paths SUBST_MESSAGE.paths= "Fixing hardcoded paths." SUBST_STAGE.paths= post-patch SUBST_FILES.paths= pks-commands.html |