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/codemedic/Makefile | |
parent | Update to 2.4.13. (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/codemedic/Makefile')
-rw-r--r-- | devel/codemedic/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/codemedic/Makefile b/devel/codemedic/Makefile index a6bfc88bb6ad..d637956e4444 100644 --- a/devel/codemedic/Makefile +++ b/devel/codemedic/Makefile @@ -76,9 +76,9 @@ post-extract: .endfor post-patch: - @${ECHO} "SEARCHDIRS += ${PORTINCLUDES}" >> \ + @${ECHO_CMD} "SEARCHDIRS += ${PORTINCLUDES}" >> \ ${WRKSRC}/${EXTRALIBFILES_MAKE_WRKSRC}/jx_constants - @${ECHO} "\nLOADLIBS += ${PORTLIBS}" >> \ + @${ECHO_CMD} "\nLOADLIBS += ${PORTLIBS}" >> \ ${WRKSRC}/programs/${PORTNAME}/Make.header pre-build: |