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/csound/Makefile | |
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/csound/Makefile')
-rw-r--r-- | audio/csound/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/audio/csound/Makefile b/audio/csound/Makefile index aa2c33120408..39872d65e7e3 100644 --- a/audio/csound/Makefile +++ b/audio/csound/Makefile @@ -27,18 +27,18 @@ PLIST= ${WRKDIR}/pkg-plist USE_X_PREFIX= yes pre-build: - find ${WRKDIR} -type f -exec ${CHMOD} 644 \{\} \; + ${FIND} ${WRKDIR} -type f -exec ${CHMOD} 644 \{\} \; post-build: ${RM} -f ${PLIST} for i in `find ${WRKDIR} -type f -perm 755`; do \ - ${ECHO} bin/`${BASENAME} $${i}` >> ${PLIST}; \ + ${ECHO_CMD} bin/`${BASENAME} $${i}` >> ${PLIST}; \ done - ${ECHO} share/csound/csound.xmg >> ${PLIST} - ${ECHO} "@dirrm share/csound" >> ${PLIST} - ${ECHO} "*** WARNING ***" > ${PKGMESSAGE} - ${ECHO} "The sources for the csound package have not been" >> ${PKGMESSAGE} - ${ECHO} "thoroughly reviewed by the FreeBSD maintainer." >> ${PKGMESSAGE} + ${ECHO_CMD} share/csound/csound.xmg >> ${PLIST} + ${ECHO_CMD} "@dirrm share/csound" >> ${PLIST} + ${ECHO_CMD} "*** WARNING ***" > ${PKGMESSAGE} + ${ECHO_CMD} "The sources for the csound package have not been" >> ${PKGMESSAGE} + ${ECHO_CMD} "thoroughly reviewed by the FreeBSD maintainer." >> ${PKGMESSAGE} post-patch: ${PERL} -pi -e "s:/usr/local/lib:${DATADIR}:g" ${WRKSRC}/getstring.c |