diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
commit | f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1 (patch) | |
tree | 0374d55450aad7c24b92569982b2b7a7c895ca7a /german/staroffice52 | |
parent | fdab120e8f7f5dc349cb1887034af51fe4834d3c (diff) | |
download | FreeBSD-ports-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.zip FreeBSD-ports-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.tar.gz |
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/staroffice52')
-rw-r--r-- | german/staroffice52/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/german/staroffice52/Makefile b/german/staroffice52/Makefile index 2a2a6b5..606940c 100644 --- a/german/staroffice52/Makefile +++ b/german/staroffice52/Makefile @@ -43,8 +43,8 @@ LD_PATH= ${TMPDIR}:${WRKSRC}:${LINUXBASE}/lib:${LINUXBASE}/usr/lib INSTDB.INS= ${PREFIX}/office52/program/instdb.ins SUNSOLVE= ${WRKDIR}/109939-03 ADABAS_DIST= soa-5_2-ga-bin-linux-de.bin -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> |