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 | b71a1d488b6b45e0a968a4c149990c25b6a09215 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /mail/mailagent | |
parent | 624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff) | |
download | pkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.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/mailagent')
-rw-r--r-- | mail/mailagent/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/mail/mailagent/Makefile b/mail/mailagent/Makefile index 84163cb3451..255ec44788e 100644 --- a/mail/mailagent/Makefile +++ b/mail/mailagent/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2005/09/28 20:52:24 rillig Exp $ +# $NetBSD: Makefile,v 1.14 2005/12/05 20:50:33 rillig Exp $ DISTNAME= mailagent-3.0.73 CATEGORIES= mail @@ -14,12 +14,13 @@ INTERACTIVE_STAGE= configure HAS_CONFIGURE= yes CONFIGURE_SCRIPT= ./Configure -CONFIGURE_ARGS= -dres \ - -Dperlpath='${PERL5}' \ - -Dutmp='/var/run/utmp' \ - -Dprefix='${PREFIX}' -Dmansrc='${PREFIX}/man/man1' \ - -Dnotifypatches='false' -MAKE_ENV= PATH=`${DIRNAME} ${PERL5}`:${PATH} +CONFIGURE_ARGS+= -dres +CONFIGURE_ARGS+= -Dperlpath=${PERL5:Q} +CONFIGURE_ARGS+= -Dutmp='/var/run/utmp' +CONFIGURE_ARGS+= -Dprefix=${PREFIX:Q} +CONFIGURE_ARGS+= -Dmansrc=${PREFIX:Q}/man/man1 +CONFIGURE_ARGS+= -Dnotifypatches='false' +MAKE_ENV+= PATH=`${DIRNAME} ${PERL5}`:${PATH} INSTALL_TARGET= install install.man pre-extract: |