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/xshogi/Makefile | |
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/xshogi/Makefile')
-rw-r--r-- | games/xshogi/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/xshogi/Makefile b/games/xshogi/Makefile index bcacd2b..f5f8b93 100644 --- a/games/xshogi/Makefile +++ b/games/xshogi/Makefile @@ -21,8 +21,8 @@ MAKEFILE= Makefile.custom MAN6= xshogi.6 post-configure: - @${ECHO} "DISTDIR=${WRKDIR}" >> ${WRKSRC}/${MAKEFILE} - @${ECHO} "LOCALBASE=${LOCALBASE}" >> ${WRKSRC}/${MAKEFILE} + @${ECHO_CMD} "DISTDIR=${WRKDIR}" >> ${WRKSRC}/${MAKEFILE} + @${ECHO_CMD} "LOCALBASE=${LOCALBASE}" >> ${WRKSRC}/${MAKEFILE} post-install: @strip ${PREFIX}/bin/xshogi |