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/denemo | |
parent | 310947301967ef18b865110fb86c32183db76f13 (diff) |
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/denemo')
-rw-r--r-- | audio/denemo/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/audio/denemo/Makefile b/audio/denemo/Makefile index 81aa6663bf5d..a9a45f34951e 100644 --- a/audio/denemo/Makefile +++ b/audio/denemo/Makefile @@ -30,15 +30,15 @@ post-configure: ${PERL} -pi -e "s:<wait.h:<sys/wait.h:g" ${WRKSRC}/*.c pre-install: - ${ECHO} bin/${PORTNAME} > ${PLIST} + ${ECHO_CMD} bin/${PORTNAME} > ${PLIST} .for i in ${SHARED} - ${ECHO} share/denemo/$i >> ${PLIST} + ${ECHO_CMD} share/denemo/$i >> ${PLIST} .endfor .for i in ${DOCS} - ${ECHO} ${DOCDIR}/$i >> ${PLIST} + ${ECHO_CMD} ${DOCDIR}/$i >> ${PLIST} .endfor - ${ECHO} @dirrm ${DOCDIR} >> ${PLIST} - ${ECHO} @dirrm share/denemo >> ${PLIST} + ${ECHO_CMD} @dirrm ${DOCDIR} >> ${PLIST} + ${ECHO_CMD} @dirrm share/denemo >> ${PLIST} do-install: ${MKDIR} ${PREFIX}/share/denemo |