diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 11:08:52 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 11:08:52 +0000 |
commit | 2a436f8061602989d2bc9da2badeb810b25743fe (patch) | |
tree | cbe88b8f8fbad0137e21885684157d7bc8fb5240 /japanese/lookup | |
parent | 4945631e5af11d192570f6bcb9c89591bfbe9e1a (diff) | |
download | FreeBSD-ports-2a436f8061602989d2bc9da2badeb810b25743fe.zip FreeBSD-ports-2a436f8061602989d2bc9da2badeb810b25743fe.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 'japanese/lookup')
-rw-r--r-- | japanese/lookup/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/japanese/lookup/Makefile b/japanese/lookup/Makefile index 6ec408a..d85097f 100644 --- a/japanese/lookup/Makefile +++ b/japanese/lookup/Makefile @@ -38,7 +38,7 @@ CONFIGURE_ARGS= --with-emacs=${EMACS_CMD} \ post-install: .if (${EMACS_PORT_NAME} == "xemacs21-mule") ${RM} -f ${WRKDIR}/${MANIFEST} - emacsdir=`${ECHO} ${EMACSDIR} | ${SED} -e "s;^${PREFIX}/;;"`; \ + emacsdir=`${ECHO_CMD} ${EMACSDIR} | ${SED} -e "s;^${PREFIX}/;;"`; \ ${CAT} ${PLIST} | ${GREP} -e "^$${emacsdir}" | \ ${SED} -e "s;^$${emacsdir}/;;" > ${WRKDIR}/${MANIFEST} ${MKDIR} ${EMACSDIR}/pkginfo |