diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:48:57 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:48:57 +0000 |
commit | 897d06aa9731645e0a7fa7c315028dcdbfa3c798 (patch) | |
tree | 485cefa9621a788f5d27ac4dcab7fc6aa9843be6 /russian | |
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.
Notes
Notes:
svn path=/head/; revision=53958
Diffstat (limited to 'russian')
-rw-r--r-- | russian/apache13-modssl/Makefile | 2 | ||||
-rw-r--r-- | russian/koi8r-ps/Makefile | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/russian/apache13-modssl/Makefile b/russian/apache13-modssl/Makefile index 585e5efd339e..e3e9a76e6e84 100644 --- a/russian/apache13-modssl/Makefile +++ b/russian/apache13-modssl/Makefile @@ -121,7 +121,7 @@ post-install: ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/rc.apache.sh ${PREFIX}/etc/rc.d/apache.sh; \ fi .if defined(WITH_SUEXEC) - @${ECHO} "sbin/suexec" >> ${TMPPLIST} + @${ECHO_CMD} "sbin/suexec" >> ${TMPPLIST} .endif .include <bsd.port.post.mk> diff --git a/russian/koi8r-ps/Makefile b/russian/koi8r-ps/Makefile index 8fa537998fb9..a8f357a0b289 100644 --- a/russian/koi8r-ps/Makefile +++ b/russian/koi8r-ps/Makefile @@ -24,14 +24,14 @@ FONTMAP!= if which gs > /dev/null 2>&1 ; then \ d=`gs -h | awk '/^Search path:$$/ { nl=1; next } \ nl { print $$3; exit }'`; \ if [ -e $$d/Fontmap.GS ] ; then \ - ${ECHO} $$d/Fontmap.GS; \ + ${ECHO_CMD} $$d/Fontmap.GS; \ elif [ -e $$d/Fontmap ] ; then \ - ${ECHO} $$d/Fontmap \ + ${ECHO_CMD} $$d/Fontmap \ else \ - ${ECHO} /nicht/ ; \ + ${ECHO_CMD} /nicht/ ; \ fi; \ else \ - ${ECHO} /nicht/ ; \ + ${ECHO_CMD} /nicht/ ; \ fi .endif @@ -46,7 +46,7 @@ do-extract: > ${WRKSRC}/XFree86-Type1_fonts.dir.scale do-build: - ${ECHO} `${GREP} koi8 ${WRKSRC}/XFree86-Type1_fonts.dir.scale | wc -l` \ + ${ECHO_CMD} `${GREP} koi8 ${WRKSRC}/XFree86-Type1_fonts.dir.scale | wc -l` \ > ${WRKSRC}/fonts.dir ${GREP} koi8 ${WRKSRC}/XFree86-Type1_fonts.dir.scale \ >> ${WRKSRC}/fonts.dir @@ -82,7 +82,7 @@ do-install: ${RM} -f "${FONTMAP}".CyrPS ; \ fi .endif - ${ECHO} ${FONTMAP} > ${CPS_DIR}/fontmap.path + ${ECHO_CMD} ${FONTMAP} > ${CPS_DIR}/fontmap.path ${INSTALL_DATA} ${WRKSRC}/Fontmap.diff ${CPS_DIR} ${INSTALL_DATA} ${WRKSRC}/fonts.dir ${CPS_DIR} ${LN} -s fonts.dir ${CPS_DIR}/fonts.scale |