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/p5-manual | |
parent | 4945631e5af11d192570f6bcb9c89591bfbe9e1a (diff) | |
download | freebsd-ports-graphics-2a436f8061602989d2bc9da2badeb810b25743fe.tar.gz freebsd-ports-graphics-2a436f8061602989d2bc9da2badeb810b25743fe.tar.zst freebsd-ports-graphics-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/p5-manual')
-rw-r--r-- | japanese/p5-manual/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/japanese/p5-manual/Makefile b/japanese/p5-manual/Makefile index 4a57ade2665..a0054362d7c 100644 --- a/japanese/p5-manual/Makefile +++ b/japanese/p5-manual/Makefile @@ -52,9 +52,9 @@ do-install: .include <bsd.port.post.mk> plist: - @${ECHO} -n >${PLIST} + @${ECHO_CMD} -n >${PLIST} .for item in 1 3 .for file in ${CAT${item}} - @${ECHO} man/ja/cat${item}/${file}.gz >>${PLIST} + @${ECHO_CMD} man/ja/cat${item}/${file}.gz >>${PLIST} .endfor .endfor |