diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 10:16:28 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 10:16:28 +0000 |
commit | 683084ba5b0a2fbaac959371c452814420e77ba6 (patch) | |
tree | 708e7807b36deea4f04ea6f9464e4e09d8b04ab2 /devel/ORBit2/Makefile | |
parent | 6fd54384344c267d40b400ec310d64528228d10c (diff) | |
download | FreeBSD-ports-683084ba5b0a2fbaac959371c452814420e77ba6.zip FreeBSD-ports-683084ba5b0a2fbaac959371c452814420e77ba6.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 'devel/ORBit2/Makefile')
-rw-r--r-- | devel/ORBit2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/ORBit2/Makefile b/devel/ORBit2/Makefile index 81ca551..3e7c5be 100644 --- a/devel/ORBit2/Makefile +++ b/devel/ORBit2/Makefile @@ -30,8 +30,8 @@ post-patch: @${TOUCH} ${WRKSRC}/configure post-install: - @${ECHO} "ORBIIOPIPv4=0" > ${PREFIX}/etc/orbitrc.default - @${ECHO} "ORBIIOPIPv6=0" >> ${PREFIX}/etc/orbitrc.default + @${ECHO_CMD} "ORBIIOPIPv4=0" > ${PREFIX}/etc/orbitrc.default + @${ECHO_CMD} "ORBIIOPIPv6=0" >> ${PREFIX}/etc/orbitrc.default @if [ ! -f ${PREFIX}/etc/orbitrc ]; then \ ${CP} -p ${PREFIX}/etc/orbitrc.default ${PREFIX}/etc/orbitrc ; \ fi |