diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 09:33:26 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 09:33:26 +0000 |
commit | d5819cf5478f5c222d63b9fd7a583910a204ab12 (patch) | |
tree | 70921f07b2dd2adb1e2bd7b39922fb3af0c2bdf5 /audio/mutemix | |
parent | 310947301967ef18b865110fb86c32183db76f13 (diff) | |
download | ports-d5819cf5478f5c222d63b9fd7a583910a204ab12.tar.gz ports-d5819cf5478f5c222d63b9fd7a583910a204ab12.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.
Notes
Notes:
svn path=/head/; revision=53947
Diffstat (limited to 'audio/mutemix')
-rw-r--r-- | audio/mutemix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/mutemix/Makefile b/audio/mutemix/Makefile index bdf91fce9c31..065d5d9fead5 100644 --- a/audio/mutemix/Makefile +++ b/audio/mutemix/Makefile @@ -25,7 +25,7 @@ do-extract: ${MKDIR} ${WRKDIR} pre-install: - ${ECHO} "bin/mutemix" > ${PLIST} + ${ECHO_CMD} "bin/mutemix" > ${PLIST} do-install: ${INSTALL_SCRIPT} ${_DISTDIR}/${DISTFILES} ${PREFIX}/bin/mutemix |