diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:24:09 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:24:09 +0000 |
commit | c982f5faf1c27ba011ef14e71aadc2182660d704 (patch) | |
tree | 2b0b412c02b07adeb72e10a7417749a64cea16ec /korean/ghostscript-gnu-korfont | |
parent | 0b1020495087240f21a4fa421e92e457fc065310 (diff) |
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.
Notes
Notes:
svn path=/head/; revision=53957
Diffstat (limited to 'korean/ghostscript-gnu-korfont')
-rw-r--r-- | korean/ghostscript-gnu-korfont/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/korean/ghostscript-gnu-korfont/Makefile b/korean/ghostscript-gnu-korfont/Makefile index 7e3a1238a5ab..975cfc5447c5 100644 --- a/korean/ghostscript-gnu-korfont/Makefile +++ b/korean/ghostscript-gnu-korfont/Makefile @@ -35,6 +35,6 @@ do-install: ${MV} ${GSLIB_DIR}/CIDFnmap ${GSLIB_DIR}/CIDFnmap.orig.ko ${GREP} -v -e "CIDFnmap.ko" ${GSLIB_DIR}/CIDFnmap.orig.ko > \ ${GSLIB_DIR}/CIDFnmap - ${ECHO} '(CIDFnmap.ko) .runlibfile' >> ${GSLIB_DIR}/CIDFnmap + ${ECHO_CMD} '(CIDFnmap.ko) .runlibfile' >> ${GSLIB_DIR}/CIDFnmap .include <bsd.port.mk> |