diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 17:33:26 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 17:33:26 +0800 |
commit | 4da97adde01886935ba4f608070b88f44e9486da (patch) | |
tree | a6bb4d3016a5a78eaded12e3c18f3d7d80048702 /audio/rplay | |
parent | 19d3130df9cdb4623804cf7be13f1ba367a15191 (diff) | |
download | freebsd-ports-gnome-4da97adde01886935ba4f608070b88f44e9486da.tar.gz freebsd-ports-gnome-4da97adde01886935ba4f608070b88f44e9486da.tar.zst freebsd-ports-gnome-4da97adde01886935ba4f608070b88f44e9486da.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 'audio/rplay')
-rw-r--r-- | audio/rplay/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/rplay/Makefile b/audio/rplay/Makefile index 33e6c94b1588..7783cced6190 100644 --- a/audio/rplay/Makefile +++ b/audio/rplay/Makefile @@ -37,7 +37,7 @@ post-install: @${INSTALL_SCRIPT} -m 751 ${FILESDIR}/rplayd.sh ${PREFIX}/etc/rc.d/rplayd.sh .endif .if !exists(${PREFIX}/etc/rplay.hosts) - @${ECHO} localhost > ${PREFIX}/etc/rplay.hosts + @${ECHO_CMD} localhost > ${PREFIX}/etc/rplay.hosts .endif .include <bsd.port.mk> |