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 /mail/cclient | |
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 'mail/cclient')
-rw-r--r-- | mail/cclient/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/cclient/Makefile b/mail/cclient/Makefile index f1abec4a6c57..090348a0e8ee 100644 --- a/mail/cclient/Makefile +++ b/mail/cclient/Makefile @@ -60,11 +60,11 @@ HEADERS= c-client.h dummy.h env.h env_unix.h fdstring.h flocksim.h \ PORTREV_H= ${WRKDIR}/portrevision.h post-build: - @${ECHO} "#define CCLIENT_PORTVERSION \"${PORTVERSION}\"" >${PORTREV_H} + @${ECHO_CMD} "#define CCLIENT_PORTVERSION \"${PORTVERSION}\"" >${PORTREV_H} .if defined(WITH_SSL) - @${ECHO} "#define CCLIENT_SSLENABLED \"yes\"" >>${PORTREV_H} + @${ECHO_CMD} "#define CCLIENT_SSLENABLED \"yes\"" >>${PORTREV_H} .else - @${ECHO} "#define CCLIENT_SSLENABLED \"no\"" >>${PORTREV_H} + @${ECHO_CMD} "#define CCLIENT_SSLENABLED \"no\"" >>${PORTREV_H} .endif do-install: |