From 32c83edfbcce207c560685385be28ffc02faad2c Mon Sep 17 00:00:00 2001 From: Akinori MUSHA 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/sdl12/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'devel/sdl12') diff --git a/devel/sdl12/Makefile b/devel/sdl12/Makefile index cd388f37aba8..6c53a90b7ab8 100644 --- a/devel/sdl12/Makefile +++ b/devel/sdl12/Makefile @@ -51,10 +51,10 @@ CONFIGURE_ARGS+=--enable-video-opengl .include -MAN3!= /bin/cat ${FILESDIR}/man3 +MAN3!= ${CAT} ${FILESDIR}/man3 pre-configure: - @find ${WRKSRC} -type f -name Makefile.in | xargs ${TOUCH} + @${FIND} ${WRKSRC} -type f -name Makefile.in | ${XARGS} ${TOUCH} post-configure: @cd ${WRKSRC} && \ @@ -71,7 +71,7 @@ post-install: .for file in BUGS COPYING CREDITS README WhatsNew docs.html ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/SDL11 .endfor - @cd ${WRKSRC}/docs; tar cf - `${ECHO} [^Mm]*` | \ + @cd ${WRKSRC}/docs; ${TAR} cf - `${ECHO_CMD} [^Mm]*` | \ (cd ${PREFIX}/share/doc/SDL11/docs; ${TAR} --unlink -xf - ) .endif @${DISPLAY_MSG} -- cgit v1.2.3