diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 18:53:27 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 18:53:27 +0800 |
commit | f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1 (patch) | |
tree | 0374d55450aad7c24b92569982b2b7a7c895ca7a /german/staroffice5 | |
parent | fdab120e8f7f5dc349cb1887034af51fe4834d3c (diff) | |
download | freebsd-ports-gnome-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.tar.gz freebsd-ports-gnome-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.tar.zst freebsd-ports-gnome-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.zip |
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 |