diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 11:08:52 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 11:08:52 +0000 |
commit | 2a436f8061602989d2bc9da2badeb810b25743fe (patch) | |
tree | cbe88b8f8fbad0137e21885684157d7bc8fb5240 /irc/zircon/Makefile | |
parent | 4945631e5af11d192570f6bcb9c89591bfbe9e1a (diff) | |
download | FreeBSD-ports-2a436f8061602989d2bc9da2badeb810b25743fe.zip FreeBSD-ports-2a436f8061602989d2bc9da2badeb810b25743fe.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 'irc/zircon/Makefile')
-rw-r--r-- | irc/zircon/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irc/zircon/Makefile b/irc/zircon/Makefile index ba8ec59..398dd3b 100644 --- a/irc/zircon/Makefile +++ b/irc/zircon/Makefile @@ -17,7 +17,7 @@ RUN_DEPENDS= wish8.3:${PORTSDIR}/x11-toolkits/tk83 NO_BUILD= yes do-install: - ${ECHO} "set go {Yes}" >>${WRKSRC}/install.in + ${ECHO_CMD} "set go {Yes}" >>${WRKSRC}/install.in (cd ${WRKSRC} && ./installZircon NoGui) .include <bsd.port.mk> |