diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:16:28 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:16:28 +0000 |
commit | 32c83edfbcce207c560685385be28ffc02faad2c (patch) | |
tree | 8b9a9aef75ca0c44c811a5951f9fc90aec5e4c56 /devel/sdl12 | |
parent | 9095f32cab001d2e1030d84207be8bb8e14f6ef0 (diff) |
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.
Notes
Notes:
svn path=/head/; revision=53952
Diffstat (limited to 'devel/sdl12')
-rw-r--r-- | devel/sdl12/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
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 <bsd.port.pre.mk> -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} |