diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 18:34:23 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 18:34:23 +0800 |
commit | fdab120e8f7f5dc349cb1887034af51fe4834d3c (patch) | |
tree | 5ad72b52c789f91d654888bd06c860a242d912d6 /german | |
parent | 683084ba5b0a2fbaac959371c452814420e77ba6 (diff) | |
download | freebsd-ports-gnome-fdab120e8f7f5dc349cb1887034af51fe4834d3c.tar.gz freebsd-ports-gnome-fdab120e8f7f5dc349cb1887034af51fe4834d3c.tar.zst freebsd-ports-gnome-fdab120e8f7f5dc349cb1887034af51fe4834d3c.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')
-rw-r--r-- | german/staroffice70/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/german/staroffice70/Makefile b/german/staroffice70/Makefile index 37dc0032007a..48c0bc3f6c1c 100644 --- a/german/staroffice70/Makefile +++ b/german/staroffice70/Makefile @@ -35,8 +35,8 @@ LD_PATH= ${TMPDIR}:${WRKSRC}:${LINUXBASE}/lib:${LINUXBASE}/usr/lib INSTDB.INS= ${PREFIX}/${SOVERSION}/program/instdb.ins OPENCONFIG= ${PREFIX}/${SOVERSION}/share/config/registry/cache/instance/org/openoffice -SIZE!= /bin/df -k . | /usr/bin/tail -n 1 | /usr/bin/awk '{print $$4}' -LINPROCFS!= /sbin/mount | /usr/bin/grep linprocfs | /usr/bin/awk '{print $1}' +SIZE!= /bin/df -k . | ${TAIL} -n 1 | ${AWK} '{print $$4}' +LINPROCFS!= /sbin/mount | ${GREP} linprocfs | ${AWK} '{print $1}' .include <bsd.port.pre.mk> |