diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
commit | bc07afc1c299155a3451d285f1e3c862af0c8e83 (patch) | |
tree | 1fecad8c5762f1c1f723e927775d4b37b5a0f7d9 /german/staroffice5 | |
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 'german/staroffice5')
-rw-r--r-- | german/staroffice5/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/german/staroffice5/Makefile b/german/staroffice5/Makefile index 615c9184d3a3..af260bf12a09 100644 --- a/german/staroffice5/Makefile +++ b/german/staroffice5/Makefile @@ -71,7 +71,7 @@ do-install: @${LN} -fs /compat/linux/usr/local/Office51 ${PREFIX}/Office51 .endif @${CP} /compat/linux/etc/ld.so.conf ${WRKDIR}/tmp/ld.so.conf.temp - @${ECHO} "${WRKDIR}/tmp" >> ${WRKDIR}/tmp/ld.so.conf.temp + @${ECHO_CMD} "${WRKDIR}/tmp" >> ${WRKDIR}/tmp/ld.so.conf.temp @PATH=${PATH}:${WRKDIR}/tmp @LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${WRKDIR}/tmp:/usr/lib:/lib:/compat/linux/lib @/compat/linux/sbin/ldconfig -f ${WRKDIR}/tmp/ld.so.conf.temp |