summaryrefslogtreecommitdiffstats
path: root/audio/csound/Makefile
diff options
context:
space:
mode:
authorknu <knu@FreeBSD.org>2002-01-29 09:33:26 +0000
committerknu <knu@FreeBSD.org>2002-01-29 09:33:26 +0000
commit4da97adde01886935ba4f608070b88f44e9486da (patch)
treea6bb4d3016a5a78eaded12e3c18f3d7d80048702 /audio/csound/Makefile
parent19d3130df9cdb4623804cf7be13f1ba367a15191 (diff)
downloadFreeBSD-ports-4da97adde01886935ba4f608070b88f44e9486da.zip
FreeBSD-ports-4da97adde01886935ba4f608070b88f44e9486da.tar.gz
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/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/audio/csound/Makefile b/audio/csound/Makefile
index aa2c331..39872d6 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
OpenPOWER on IntegriCloud