From 683084ba5b0a2fbaac959371c452814420e77ba6 Mon Sep 17 00:00:00 2001 From: knu Date: Tue, 29 Jan 2002 10:16:28 +0000 Subject: 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. --- devel/ORBit/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'devel/ORBit') diff --git a/devel/ORBit/Makefile b/devel/ORBit/Makefile index 81ca55168dc8..3e7c5be83e75 100644 --- a/devel/ORBit/Makefile +++ b/devel/ORBit/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 -- cgit