summaryrefslogtreecommitdiff
path: root/print/LPRng-core
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-05 20:49:47 +0000
committerrillig <rillig>2005-12-05 20:49:47 +0000
commit472dafdd2e1560bc21a20b89efd58a911dc44409 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /print/LPRng-core
parent55a30558d8942bf85417fab3ed26bec7a7c3aae6 (diff)
downloadpkgsrc-472dafdd2e1560bc21a20b89efd58a911dc44409.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 'print/LPRng-core')
-rw-r--r--print/LPRng-core/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/print/LPRng-core/Makefile b/print/LPRng-core/Makefile
index ab465dcc529..7f1b573ce45 100644
--- a/print/LPRng-core/Makefile
+++ b/print/LPRng-core/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.19 2005/06/24 19:05:48 kristerw Exp $
+# $NetBSD: Makefile,v 1.20 2005/12/05 20:50:52 rillig Exp $
DISTNAME= LPRng-3.8.28
PKGNAME= LPRng-core-3.8.28
@@ -26,8 +26,8 @@ CONFIGURE_ARGS+= --with-printcap_path="${PRINTCAP_PATH}"
CONFIGURE_ARGS+= --with-filterdir="${FILTER_DIR}"
CONFIGURE_ARGS+= --with-filter_path="${FILTER_PATH}"
CONFIGURE_ARGS+= --with-ld_library_path="${FILTER_LD_PATH}"
-CONFIGURE_ENV+= CHGRP="${TOOLS_CHGRP}"
-CONFIGURE_ENV+= CHOWN="${TOOLS_CHOWN}"
+CONFIGURE_ENV+= CHGRP=${TOOLS_CHGRP:Q}
+CONFIGURE_ENV+= CHOWN=${TOOLS_CHOWN:Q}
.include "options.mk"
@@ -48,7 +48,7 @@ INSTALL_FILE= ${WRKDIR}/INSTALL
USE_PKGINSTALL= YES
RCD_SCRIPTS= LPRng
-FILES_SUBST= CAT=${CAT:Q}
+FILES_SUBST+= CAT=${CAT:Q}
FILES_SUBST+= CHMOD=${CHMOD:Q}
FILES_SUBST+= CMP=${CMP:Q}
FILES_SUBST+= CP=${CP:Q}