From 476fa54a5c6f73ef5e86683a76da131e57c54e53 Mon Sep 17 00:00:00 2001 From: knu Date: Tue, 29 Jan 2002 09:39:59 +0000 Subject: 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. --- chinese/emacs20/Makefile | 4 ++-- chinese/enscript/Makefile | 2 +- chinese/firebird/Makefile | 14 +++++++------- 3 files changed, 10 insertions(+), 10 deletions(-) (limited to 'chinese') diff --git a/chinese/emacs20/Makefile b/chinese/emacs20/Makefile index 88b1e6185a39..f1548a1b761c 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 02ba184878f9..0b6d45df875c 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 5456dae3bfbf..e4568a1214f4 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 -- cgit