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/csound | |
parent | 310947301967ef18b865110fb86c32183db76f13 (diff) | |
download | ports-d5819cf5478f5c222d63b9fd7a583910a204ab12.tar.gz ports-d5819cf5478f5c222d63b9fd7a583910a204ab12.zip |
Notes
Diffstat (limited to 'audio/csound')
-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 |