diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-27 22:30:39 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-27 22:30:39 +0000 |
commit | b8f8618362b39a01e2225feef7d298fb22cafe2f (patch) | |
tree | 67a28a0746219c11b5e630daec412185165d3ed9 /mail/smail | |
parent | 3927b01845af9489e456e36e73d2511621daea90 (diff) | |
download | freebsd-ports-b8f8618362b39a01e2225feef7d298fb22cafe2f.zip |
echo -> ${ECHO} or ${ECHO_MSG} and in some cases, move echo stuff
to pkg/MESSAGE and use ${CAT} ${PKGMESSAGE}
Diffstat (limited to 'mail/smail')
-rw-r--r-- | mail/smail/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/smail/Makefile b/mail/smail/Makefile index e901bd0ab24a..8701e4a4957c 100644 --- a/mail/smail/Makefile +++ b/mail/smail/Makefile @@ -29,13 +29,13 @@ MAN8= pathalias.8 mkdbm.8 mkline.8 mksort.8 mkaliases.8 smail.8 \ mkuuwho.8 mailq.8 sendmail.8 runq.8 rmail.8 rsmtp.8 smtpd.8 post-install: - @echo "If you want to replace sendmail with links to smail, type" - @echo "the following command as \"root\":" - @echo "" - @echo " make replace" + @${ECHO_MSG} "If you want to replace sendmail with links to smail, type" + @${ECHO_MSG} "the following command as \"root\":" + @${ECHO_MSG} "" + @${ECHO_MSG} " make replace" replace: - @echo "===> Replacing sendmail" + @${ECHO_MSG} "===> Replacing sendmail" if [ -e /usr/sbin/sendmail ]; then \ ${MV} -f /usr/sbin/sendmail /usr/sbin/sendmail.BAK; \ if [ -f /usr/sbin/sendmail.BAK ]; then \ |