From 4adc5a8a717b83cd9a139cd4c92ea01102d602e2 Mon Sep 17 00:00:00 2001 From: Akinori MUSHA Date: Tue, 29 Jan 2002 12:08:37 +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. --- www/netscape7/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'www/netscape7') diff --git a/www/netscape7/Makefile b/www/netscape7/Makefile index 7fec3ce54b69..d7651d13b1a0 100644 --- a/www/netscape7/Makefile +++ b/www/netscape7/Makefile @@ -99,18 +99,18 @@ do-configure: ${FILESDIR}/start.sh >${WRKDIR}/${STARTUP_CMD} pre-install: - ${ECHO} bin/${STARTUP_CMD} > ${PLIST} + ${ECHO_CMD} bin/${STARTUP_CMD} > ${PLIST} cd ${WRKSRC}/bin; for i in `find * \! -type d | sort`; do \ - ${ECHO} lib/linux-netscape6/$${i} >> ${PLIST}; \ + ${ECHO_CMD} lib/linux-netscape6/$${i} >> ${PLIST}; \ done cd ${WRKSRC}/plugins; for i in `find * \! -type d | sort`; do \ - ${ECHO} lib/linux-netscape6/plugins/$${i} >> ${PLIST}; \ + ${ECHO_CMD} lib/linux-netscape6/plugins/$${i} >> ${PLIST}; \ done cd ${WRKSRC}/bin; \ for i in `find -d * -type d`; do \ - ${ECHO} @dirrm lib/linux-netscape6/$${i} >> ${PLIST}; \ + ${ECHO_CMD} @dirrm lib/linux-netscape6/$${i} >> ${PLIST}; \ done - ${ECHO} @dirrm lib/linux-netscape6 >> ${PLIST} + ${ECHO_CMD} @dirrm lib/linux-netscape6 >> ${PLIST} do-install: ${MKDIR} ${INSTALL_DIR} -- cgit v1.2.3