diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 19:08:52 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 19:08:52 +0800 |
commit | 2a436f8061602989d2bc9da2badeb810b25743fe (patch) | |
tree | cbe88b8f8fbad0137e21885684157d7bc8fb5240 /japanese/tcsh | |
parent | 4945631e5af11d192570f6bcb9c89591bfbe9e1a (diff) | |
download | freebsd-ports-gnome-2a436f8061602989d2bc9da2badeb810b25743fe.tar.gz freebsd-ports-gnome-2a436f8061602989d2bc9da2badeb810b25743fe.tar.zst freebsd-ports-gnome-2a436f8061602989d2bc9da2badeb810b25743fe.zip |
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 'japanese/tcsh')
-rw-r--r-- | japanese/tcsh/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/japanese/tcsh/Makefile b/japanese/tcsh/Makefile index 5f29c780aa46..d07f98744649 100644 --- a/japanese/tcsh/Makefile +++ b/japanese/tcsh/Makefile @@ -36,7 +36,7 @@ post-install: .endif @${ECHO} "updating /etc/shells" @${CP} /etc/shells /etc/shells.bak - @(${GREP} -v ${PREFIX}/bin/tcsh /etc/shells.bak; ${ECHO} ${PREFIX}/bin/tcsh) >/etc/shells + @(${GREP} -v ${PREFIX}/bin/tcsh /etc/shells.bak; ${ECHO_CMD} ${PREFIX}/bin/tcsh) >/etc/shells @${CAT} ${PKGMESSAGE} .include <bsd.port.post.mk> |