From bc07afc1c299155a3451d285f1e3c862af0c8e83 Mon Sep 17 00:00:00 2001 From: Akinori MUSHA Date: Tue, 29 Jan 2002 10:53:27 +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. --- games/halflifeserver/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'games/halflifeserver/Makefile') diff --git a/games/halflifeserver/Makefile b/games/halflifeserver/Makefile index 954dce2c28e7..abe119a6b8d5 100644 --- a/games/halflifeserver/Makefile +++ b/games/halflifeserver/Makefile @@ -73,7 +73,7 @@ post-extract: pre-patch: # remove trailing ^M - @find -E ${WRKSRC} -type f \ + @${FIND} -E ${WRKSRC} -type f \ -iregex ".*\.(bat|cfg|gam|htm|html|inf|ini|lst|sc|scr|txt|rc)" \ -exec ${PERL} -pi -ne 's!\r\n!\n!' {} 1>/dev/null 2>&1 \; .ifdef(WITH_PING_BOOSTER) @@ -122,7 +122,7 @@ install-run-scripts: .endfor @if ! (${GREP} -E \"^${HLDSDIR}$$\" ${PREFIX}/etc/ld.so.conf 1>/dev/null 2>&1) ;\ then \ - ${ECHO} ${HLDSDIR} >> ${PREFIX}/etc/ld.so.conf ;\ + ${ECHO_CMD} ${HLDSDIR} >> ${PREFIX}/etc/ld.so.conf ;\ fi scan-libs: -- cgit v1.2.3