summaryrefslogtreecommitdiff
path: root/mail/zmailer
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2002-01-29 11:48:57 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2002-01-29 11:48:57 +0000
commit897d06aa9731645e0a7fa7c315028dcdbfa3c798 (patch)
tree485cefa9621a788f5d27ac4dcab7fc6aa9843be6 /mail/zmailer
parentUse ${ECHO_CMD} instead of ${ECHO} where you mean the echo command; (diff)
Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command;
the ECHO macro is set to "echo" by default, but it is set to "true" if make(1) is invoked with the -s option while ECHO_CMD is always set to the echo command.
Notes
Notes: svn path=/head/; revision=53958
Diffstat (limited to 'mail/zmailer')
-rw-r--r--mail/zmailer/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/zmailer/Makefile b/mail/zmailer/Makefile
index 9f85720dffc0..983a6b6ac46e 100644
--- a/mail/zmailer/Makefile
+++ b/mail/zmailer/Makefile
@@ -70,12 +70,12 @@ post-install:
-e s:@PORTSDIR@:${PORTSDIR}:g
# set up the initial mail.conf with reasonable settings.
- @${ECHO} "# Where am I?" > ${PREFIX}/etc/zmailer/mail.conf.sample
- @${ECHO} "orgdomain="${DOMAIN} >> ${PREFIX}/etc/zmailer/mail.conf.sample
- @${ECHO} "# Who am I?" >> ${PREFIX}/etc/zmailer/mail.conf.sample
- @${ECHO} "hostname="`/bin/hostname -s`'.$$orgdomain' >> ${PREFIX}/etc/zmailer/mail.conf.sample
- @${ECHO} "# Who do I claim to be?" >> ${PREFIX}/etc/zmailer/mail.conf.sample
- @${ECHO} 'mydomain=$$orgdomain' >> ${PREFIX}/etc/zmailer/mail.conf.sample
+ @${ECHO_CMD} "# Where am I?" > ${PREFIX}/etc/zmailer/mail.conf.sample
+ @${ECHO_CMD} "orgdomain="${DOMAIN} >> ${PREFIX}/etc/zmailer/mail.conf.sample
+ @${ECHO_CMD} "# Who am I?" >> ${PREFIX}/etc/zmailer/mail.conf.sample
+ @${ECHO_CMD} "hostname="`/bin/hostname -s`'.$$orgdomain' >> ${PREFIX}/etc/zmailer/mail.conf.sample
+ @${ECHO_CMD} "# Who do I claim to be?" >> ${PREFIX}/etc/zmailer/mail.conf.sample
+ @${ECHO_CMD} 'mydomain=$$orgdomain' >> ${PREFIX}/etc/zmailer/mail.conf.sample
# obtained directly from ports/mail/postfix
# with minor hacks by the originator of this port <veers@disturbed.net>