diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
commit | f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1 (patch) | |
tree | 0374d55450aad7c24b92569982b2b7a7c895ca7a /games/xnibbles | |
parent | fdab120e8f7f5dc349cb1887034af51fe4834d3c (diff) | |
download | FreeBSD-ports-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.zip FreeBSD-ports-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.tar.gz |
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.
Diffstat (limited to 'games/xnibbles')
-rw-r--r-- | games/xnibbles/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/xnibbles/Makefile b/games/xnibbles/Makefile index 1e79f53..e57d2b7 100644 --- a/games/xnibbles/Makefile +++ b/games/xnibbles/Makefile @@ -34,7 +34,7 @@ do-install: .endif @${TOUCH} ${PREFIX}/share/xnibbles/levels/LEVELS .for file in 001 002 003 004 005 006 007 008 009 010 011 012 - @${ECHO} ${PREFIX}/share/xnibbles/levels/level${file}.xnl >> ${PREFIX}/share/xnibbles/levels/LEVELS + @${ECHO_CMD} ${PREFIX}/share/xnibbles/levels/level${file}.xnl >> ${PREFIX}/share/xnibbles/levels/LEVELS ${INSTALL_DATA} ${WRKSRC}/levels/*.xnl ${PREFIX}/share/xnibbles/levels .endfor @${MKDIR} ${PREFIX}/share/doc/xnibbles |