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 /mail/sendmail | |
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 'mail/sendmail')
-rw-r--r-- | mail/sendmail/Makefile | 6 | ||||
-rw-r--r-- | mail/sendmail/Makefile.common | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/mail/sendmail/Makefile b/mail/sendmail/Makefile index e433e1133b2..eaf992449ec 100644 --- a/mail/sendmail/Makefile +++ b/mail/sendmail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.79 2005/08/23 11:48:49 rillig Exp $ +# $NetBSD: Makefile,v 1.80 2005/12/05 20:50:35 rillig Exp $ .include "../../mail/sendmail/Makefile.common" @@ -11,9 +11,9 @@ MESSAGE_SRC= ${WRKDIR}/.MESSAGE_SRC PLIST_SRC= ${WRKDIR}/.PLIST_SRC SMRSH_CMDDIR?= ${PREFIX}/libexec/sm.bin -PLIST_SUBST+= SMRSH_CMDDIR=${SMRSH_CMDDIR} +PLIST_SUBST+= SMRSH_CMDDIR=${SMRSH_CMDDIR:Q} -SUBST_CLASSES= paths +SUBST_CLASSES+= paths SUBST_STAGE.paths= pre-build SUBST_FILES.paths= ../mailer.conf include/sm/conf.h smrsh/smrsh.8 SUBST_SED.paths= -e "s|@@PREFIX@@|${PREFIX}|g" \ diff --git a/mail/sendmail/Makefile.common b/mail/sendmail/Makefile.common index 75d68eae93f..73fea46e4dc 100644 --- a/mail/sendmail/Makefile.common +++ b/mail/sendmail/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.29 2005/10/14 08:36:02 adrianp Exp $ +# $NetBSD: Makefile.common,v 1.30 2005/12/05 20:50:35 rillig Exp $ # # Makefile fragment shared with libmilter # @@ -20,9 +20,9 @@ PATCHDIR?= ${.CURDIR}/../../mail/sendmail/patches DIST_VERS= 8.13.5 -MAKE_ENV+= BSD_BINOWN="${BINOWN}" BSD_BINGRP="${BINGRP}" \ - BSD_MANOWN="${MANOWN}" BSD_MANGRP="${MANGRP}" \ - BUILDLINK_DIR="${BUILDLINK_DIR}" +MAKE_ENV+= BSD_BINOWN=${BINOWN:Q} BSD_BINGRP=${BINGRP:Q} \ + BSD_MANOWN=${MANOWN:Q} BSD_MANGRP=${MANGRP:Q} \ + BUILDLINK_DIR=${BUILDLINK_DIR:Q} SITECONFIG= ${WRKSRC}/devtools/Site/site.config.m4 BUILD_DEFS+= SMRSH_CMDDIR |