diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:48:57 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:48:57 +0000 |
commit | 897d06aa9731645e0a7fa7c315028dcdbfa3c798 (patch) | |
tree | 485cefa9621a788f5d27ac4dcab7fc6aa9843be6 /net/dctc-gui | |
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.
Notes
Notes:
svn path=/head/; revision=53958
Diffstat (limited to 'net/dctc-gui')
-rw-r--r-- | net/dctc-gui/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/dctc-gui/Makefile b/net/dctc-gui/Makefile index bcf02d9fc839..4c5f2015f370 100644 --- a/net/dctc-gui/Makefile +++ b/net/dctc-gui/Makefile @@ -38,10 +38,10 @@ post-patch: ${WRKSRC}/src/init_fnc.c post-configure: - @${ECHO} '#include <sys/param.h>' >> ${CONFIGURE_WRKSRC}/config.h - @${ECHO} '#ifndef SEMVMX' >> ${WRKSRC}/config.h - @${ECHO} '#define SEMVMX 32767' >> ${WRKSRC}/config.h - @${ECHO} '#endif' >> ${WRKSRC}/config.h + @${ECHO_CMD} '#include <sys/param.h>' >> ${CONFIGURE_WRKSRC}/config.h + @${ECHO_CMD} '#ifndef SEMVMX' >> ${WRKSRC}/config.h + @${ECHO_CMD} '#define SEMVMX 32767' >> ${WRKSRC}/config.h + @${ECHO_CMD} '#endif' >> ${WRKSRC}/config.h post-install: .ifndef(NOPORTDOCS) |