diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 10:34:23 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 10:34:23 +0000 |
commit | fdab120e8f7f5dc349cb1887034af51fe4834d3c (patch) | |
tree | 5ad72b52c789f91d654888bd06c860a242d912d6 /editors/emacs20-mule-devel | |
parent | 683084ba5b0a2fbaac959371c452814420e77ba6 (diff) | |
download | FreeBSD-ports-fdab120e8f7f5dc349cb1887034af51fe4834d3c.zip FreeBSD-ports-fdab120e8f7f5dc349cb1887034af51fe4834d3c.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 'editors/emacs20-mule-devel')
-rw-r--r-- | editors/emacs20-mule-devel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/emacs20-mule-devel/Makefile b/editors/emacs20-mule-devel/Makefile index 6a10976..9698272 100644 --- a/editors/emacs20-mule-devel/Makefile +++ b/editors/emacs20-mule-devel/Makefile @@ -120,8 +120,8 @@ do-install: ${PREFIX}/share/${MULE}${MULE_MAJOR_VER}/${EMACS_VER}/lisp/subdirs.el @for i in site-lisp/subdirs.el ${EMACS_VER}/site-lisp/subdirs.el ; do \ if [ ! -f ${PREFIX}/share/${MULE}${MULE_MAJOR_VER}/$${i} ]; then \ - (${ECHO} "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \ - ${ECHO} " (normal-top-level-add-subdirs-to-load-path))") \ + (${ECHO_CMD} "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \ + ${ECHO_CMD} " (normal-top-level-add-subdirs-to-load-path))") \ > ${PREFIX}/share/${MULE}${MULE_MAJOR_VER}/$${i} ; \ fi ; \ done |