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/spiralloops | |
parent | Use ${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/spiralloops')
-rw-r--r-- | audio/spiralloops/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/spiralloops/Makefile b/audio/spiralloops/Makefile index bb2b60a6f8a2..29ff97c88732 100644 --- a/audio/spiralloops/Makefile +++ b/audio/spiralloops/Makefile @@ -33,12 +33,12 @@ post-patch: s|/usr/X11R6|${X11BASE}|g' ${WRKSRC}/Makefile.in pre-install: - ${ECHO} bin/SpiralLoops > ${PLIST} + ${ECHO_CMD} bin/SpiralLoops > ${PLIST} .if !defined(NOPORTDOCS) .for i in ${DOC_FILES} - ${ECHO} ${DOCDIR}/`${BASENAME} ${i}` >> ${PLIST} + ${ECHO_CMD} ${DOCDIR}/`${BASENAME} ${i}` >> ${PLIST} .endfor - ${ECHO} @dirrm ${DOCDIR} >> ${PLIST} + ${ECHO_CMD} @dirrm ${DOCDIR} >> ${PLIST} .endif do-install: |