diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 19:08:52 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 19:08:52 +0800 |
commit | 2a436f8061602989d2bc9da2badeb810b25743fe (patch) | |
tree | cbe88b8f8fbad0137e21885684157d7bc8fb5240 /japanese/emacs20-emcws | |
parent | 4945631e5af11d192570f6bcb9c89591bfbe9e1a (diff) | |
download | freebsd-ports-gnome-2a436f8061602989d2bc9da2badeb810b25743fe.tar.gz freebsd-ports-gnome-2a436f8061602989d2bc9da2badeb810b25743fe.tar.zst freebsd-ports-gnome-2a436f8061602989d2bc9da2badeb810b25743fe.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 'japanese/emacs20-emcws')
-rw-r--r-- | japanese/emacs20-emcws/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/japanese/emacs20-emcws/Makefile b/japanese/emacs20-emcws/Makefile index bf834ab8f26b..97cd04822a94 100644 --- a/japanese/emacs20-emcws/Makefile +++ b/japanese/emacs20-emcws/Makefile @@ -164,13 +164,13 @@ do-install: @test -d ${PREFIX}/share/emacs/${EMACS_VER}-emcws/site-lisp || \ ${MKDIR} ${PREFIX}/share/emacs/${EMACS_VER}-emcws/site-lisp @if [ ! -f ${PREFIX}/share/emacs/${EMACS_VER}-emcws/site-lisp/subdirs.el ]; 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/emacs/${EMACS_VER}-emcws/site-lisp/subdirs.el ; \ fi @if [ ! -f ${PREFIX}/share/emacs/${EMACS_VER}-emcws/lisp/subdirs.el ]; 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/emacs/${EMACS_VER}-emcws/lisp/subdirs.el ; \ fi |