diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 17:39:59 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 17:39:59 +0800 |
commit | 476fa54a5c6f73ef5e86683a76da131e57c54e53 (patch) | |
tree | 7b692450db0c58c5e0c3dc0af9bc30d903667174 /chinese/emacs20 | |
parent | 4da97adde01886935ba4f608070b88f44e9486da (diff) | |
download | freebsd-ports-gnome-476fa54a5c6f73ef5e86683a76da131e57c54e53.tar.gz freebsd-ports-gnome-476fa54a5c6f73ef5e86683a76da131e57c54e53.tar.zst freebsd-ports-gnome-476fa54a5c6f73ef5e86683a76da131e57c54e53.zip |
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/emacs20')
-rw-r--r-- | chinese/emacs20/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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: |