diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 09:39:59 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 09:39:59 +0000 |
commit | 476fa54a5c6f73ef5e86683a76da131e57c54e53 (patch) | |
tree | 7b692450db0c58c5e0c3dc0af9bc30d903667174 /chinese | |
parent | 4da97adde01886935ba4f608070b88f44e9486da (diff) | |
download | FreeBSD-ports-476fa54a5c6f73ef5e86683a76da131e57c54e53.zip FreeBSD-ports-476fa54a5c6f73ef5e86683a76da131e57c54e53.tar.gz |
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.
Use command macros where appropriate.
Diffstat (limited to 'chinese')
-rw-r--r-- | chinese/emacs20/Makefile | 4 | ||||
-rw-r--r-- | chinese/enscript/Makefile | 2 | ||||
-rw-r--r-- | chinese/firebird/Makefile | 14 |
3 files changed, 10 insertions, 10 deletions
diff --git a/chinese/emacs20/Makefile b/chinese/emacs20/Makefile index 88b1e61..f1548a1 100644 --- a/chinese/emacs20/Makefile +++ b/chinese/emacs20/Makefile @@ -28,8 +28,8 @@ pre-patch: ${PATCH} -sp1 < ${.CURDIR}/files/emacs20-xim-20000713.diff ; ) post-patch: - @${ECHO} "share/emacs/%%EMACS_VER%%/etc/Emacs" >> ${WRKDIR}/pkg-plist - @${ECHO} "share/emacs/%%EMACS_VER%%/etc/dot.emacs" >> ${WRKDIR}/pkg-plist + @${ECHO_CMD} "share/emacs/%%EMACS_VER%%/etc/Emacs" >> ${WRKDIR}/pkg-plist + @${ECHO_CMD} "share/emacs/%%EMACS_VER%%/etc/dot.emacs" >> ${WRKDIR}/pkg-plist @${CAT} ${MASTERDIR}/pkg-plist >> ${WRKDIR}/pkg-plist post-install: diff --git a/chinese/enscript/Makefile b/chinese/enscript/Makefile index 02ba184..0b6d45d 100644 --- a/chinese/enscript/Makefile +++ b/chinese/enscript/Makefile @@ -20,7 +20,7 @@ PLIST= ${WRKDIR}/pkg-plist PKGMESSAGE= ${.CURDIR}/pkg-message post-patch: - @${ECHO} "share/enscript/README.BIG5" > ${WRKDIR}/pkg-plist + @${ECHO_CMD} "share/enscript/README.BIG5" > ${WRKDIR}/pkg-plist @${CAT} ${MASTERDIR}/pkg-plist >> ${WRKDIR}/pkg-plist do-install: diff --git a/chinese/firebird/Makefile b/chinese/firebird/Makefile index 5456dae..e4568a1 100644 --- a/chinese/firebird/Makefile +++ b/chinese/firebird/Makefile @@ -25,12 +25,12 @@ post-install: ${ECHO} "Installing ${PREFIX}/etc/rc.d/bbs.sh.example startup file."; \ ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/bbs.sh.example ${PREFIX}/etc/rc.d/bbs.sh.example; \ fi - @echo "=======================================================================" - @echo "Installnation Complete." - @echo "=======================================================================" - @echo "please review ${PREFIX}/etc/rc.d/bbs.sh.example change bbsd port you want" - @echo "then rename to ${PREFIX}/etc/rc.d/bbs.sh then:" - @echo "use ${PREFIX}/etc/rc.d/bbs.sh { start | stop } to start the BBS service" - @echo "full and complete document in ${PREFIX}/bbs/bbssrc/doc read before ask." + @${ECHO} "=======================================================================" + @${ECHO} "Installnation Complete." + @${ECHO} "=======================================================================" + @${ECHO} "please review ${PREFIX}/etc/rc.d/bbs.sh.example change bbsd port you want" + @${ECHO} "then rename to ${PREFIX}/etc/rc.d/bbs.sh then:" + @${ECHO} "use ${PREFIX}/etc/rc.d/bbs.sh { start | stop } to start the BBS service" + @${ECHO} "full and complete document in ${PREFIX}/bbs/bbssrc/doc read before ask." .include <bsd.port.mk> |