summaryrefslogtreecommitdiff
path: root/audio/autozen
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2002-01-29 09:33:26 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2002-01-29 09:33:26 +0000
commitd5819cf5478f5c222d63b9fd7a583910a204ab12 (patch)
tree70921f07b2dd2adb1e2bd7b39922fb3af0c2bdf5 /audio/autozen
parentUse ${ECHO_CMD} instead of ${ECHO} where you mean the echo command; (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/autozen')
-rw-r--r--audio/autozen/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/audio/autozen/Makefile b/audio/autozen/Makefile
index c037c9aec888..c1008fd65939 100644
--- a/audio/autozen/Makefile
+++ b/audio/autozen/Makefile
@@ -34,18 +34,18 @@ post-patch:
cd ${WRKSRC} && ${RM} autozen seq2wav
pre-install:
- ${ECHO} bin/autozen > ${PLIST}
- ${ECHO} bin/seq2wav >> ${PLIST}
+ ${ECHO_CMD} bin/autozen > ${PLIST}
+ ${ECHO_CMD} bin/seq2wav >> ${PLIST}
.for i in ${DATA_FILES}
- ${ECHO} share/autozen/${i} >> ${PLIST}
+ ${ECHO_CMD} share/autozen/${i} >> ${PLIST}
.endfor
.if !defined(NOPORTDOCS)
.for i in ${DOC_FILES}
- ${ECHO} share/doc/autozen/${i} >> ${PLIST}
+ ${ECHO_CMD} share/doc/autozen/${i} >> ${PLIST}
.endfor
- ${ECHO} @dirrm share/doc/autozen >> ${PLIST}
+ ${ECHO_CMD} @dirrm share/doc/autozen >> ${PLIST}
.endif
- ${ECHO} @dirrm share/autozen >> ${PLIST}
+ ${ECHO_CMD} @dirrm share/autozen >> ${PLIST}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/autozen ${PREFIX}/bin