diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
commit | bc07afc1c299155a3451d285f1e3c862af0c8e83 (patch) | |
tree | 1fecad8c5762f1c1f723e927775d4b37b5a0f7d9 /games/xquarto | |
parent | Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command; (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=53954
Diffstat (limited to 'games/xquarto')
-rw-r--r-- | games/xquarto/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/xquarto/Makefile b/games/xquarto/Makefile index 50744aeeb930..7968e45c5299 100644 --- a/games/xquarto/Makefile +++ b/games/xquarto/Makefile @@ -17,6 +17,6 @@ USE_XPM= yes MAN6= xquarto.6 pre-configure: - @${ECHO} "MANSUFFIX=6" >>${WRKSRC}/src/Imakefile + @${ECHO_CMD} "MANSUFFIX=6" >>${WRKSRC}/src/Imakefile .include <bsd.port.mk> |