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/sirc | |
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/sirc')
-rw-r--r-- | irc/sirc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irc/sirc/Makefile b/irc/sirc/Makefile index 5fd5424..081f4eb 100644 --- a/irc/sirc/Makefile +++ b/irc/sirc/Makefile @@ -71,7 +71,7 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/ssfe.1 ${PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/sirc.1 ${PREFIX}/man/man1 .if defined(SOCKS_SERVER) - ${ECHO} '&load("socks.pl");' >> ${PREFIX}/libexec/sirc/sircrc.pl + ${ECHO_CMD} '&load("socks.pl");' >> ${PREFIX}/libexec/sirc/sircrc.pl .endif .if !defined(NOPORTDOCS) ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${PREFIX}/libexec/sirc |