diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
commit | 51cc30a69f6ed85b6e1c747e7d0e7c630f9cc50a (patch) | |
tree | 1390f4897127f87b9dc78eb04234494436dbf1a4 /mail/sympa | |
parent | f3129e07256e493f4c4fbcb6d3b8a8b56805108b (diff) | |
download | pkgsrc-51cc30a69f6ed85b6e1c747e7d0e7c630f9cc50a.tar.gz |
Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
Diffstat (limited to 'mail/sympa')
-rw-r--r-- | mail/sympa/Makefile | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/mail/sympa/Makefile b/mail/sympa/Makefile index c8e6ca9fe1e..cc6f334c174 100644 --- a/mail/sympa/Makefile +++ b/mail/sympa/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2005/10/07 18:42:33 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2005/12/05 23:55:12 rillig Exp $ # DISTNAME= sympa-4.1.2 @@ -35,13 +35,13 @@ OPSYSVARS+= DEPENDS USE_PKGINSTALL= YES GNU_CONFIGURE= YES -CONFIGURE_ARGS+= --with-confdir=${PKG_SYSCONFDIR} -CONFIGURE_ARGS+= --with-cgidir=${SYMPA_BIN} +CONFIGURE_ARGS+= --with-confdir=${PKG_SYSCONFDIR:Q} +CONFIGURE_ARGS+= --with-cgidir=${SYMPA_BIN:Q} CONFIGURE_ARGS+= --with-iconsdir=${SYMPA_PREFIX}/httpd/icons -CONFIGURE_ARGS+= --with-bindir=${SYMPA_BIN} -CONFIGURE_ARGS+= --with-sbindir=${SYMPA_BIN} -CONFIGURE_ARGS+= --with-libexecdir=${SYMPA_BIN} -CONFIGURE_ARGS+= --with-libdir=${SYMPA_BIN} +CONFIGURE_ARGS+= --with-bindir=${SYMPA_BIN:Q} +CONFIGURE_ARGS+= --with-sbindir=${SYMPA_BIN:Q} +CONFIGURE_ARGS+= --with-libexecdir=${SYMPA_BIN:Q} +CONFIGURE_ARGS+= --with-libdir=${SYMPA_BIN:Q} CONFIGURE_ARGS+= --with-datadir=${SYMPA_BIN}/etc CONFIGURE_ARGS+= --with-expldir=${SYMPA_VARBASE}/expl CONFIGURE_ARGS+= --with-mandir=${PREFIX}/${PKGMANDIR} @@ -50,14 +50,14 @@ CONFIGURE_ARGS+= --with-piddir=${SYMPA_VARBASE}/run CONFIGURE_ARGS+= --with-etcdir=${PKG_SYSCONFDIR}/sympa CONFIGURE_ARGS+= --with-nlsdir=${SYMPA_PREFIX}/nls CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/html/sympa -CONFIGURE_ARGS+= --with-scriptdir=${SYMPA_BIN} +CONFIGURE_ARGS+= --with-scriptdir=${SYMPA_BIN:Q} CONFIGURE_ARGS+= --with-sampledir=${PREFIX}/share/examples/sympa -CONFIGURE_ARGS+= --with-spooldir=${SYMPA_SPOOL} -CONFIGURE_ARGS+= --with-perl=${PERL5} +CONFIGURE_ARGS+= --with-spooldir=${SYMPA_SPOOL:Q} +CONFIGURE_ARGS+= --with-perl=${PERL5:Q} CONFIGURE_ARGS+= --with-mhonarc=${MHONARC_PREFIX}/bin/mhonarc CONFIGURE_ARGS+= --with-openssl=${SSLBASE}/bin/openssl -CONFIGURE_ARGS+= --with-user=${SYMPA_USER} -CONFIGURE_ARGS+= --with-group=${SYMPA_GROUP} +CONFIGURE_ARGS+= --with-user=${SYMPA_USER:Q} +CONFIGURE_ARGS+= --with-group=${SYMPA_GROUP:Q} MHONARC_PREFIX_DEFAULT= ${LOCALBASE} EVAL_PREFIX+= MHONARC_PREFIX=mhonarc |