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/kaistfonts/Makefile | |
parent | Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command; (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.
Diffstat (limited to 'korean/kaistfonts/Makefile')
-rw-r--r-- | korean/kaistfonts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/korean/kaistfonts/Makefile b/korean/kaistfonts/Makefile index 475737886c6a..72bad29a6b0e 100644 --- a/korean/kaistfonts/Makefile +++ b/korean/kaistfonts/Makefile @@ -33,7 +33,7 @@ do-extract: ${MKDIR} ${WRKDIR} && \ cd ${WRKDIR} && \ for file in ${DISTFILES}; do \ - ${GUNZIP_CMD} -c < ${_DISTDIR}/$$file > `${ECHO} $$file | ${SED} -e 's/\.Z//' -e 's/\.gz//'`; \ + ${GUNZIP_CMD} -c < ${_DISTDIR}/$$file > `${ECHO_CMD} $$file | ${SED} -e 's/\.Z//' -e 's/\.gz//'`; \ done post-install: |