diff options
author | trevor <trevor@FreeBSD.org> | 2002-05-25 15:28:15 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2002-05-25 15:28:15 +0000 |
commit | 3bc17705e918b6a7c26d4212d014c95fb6efbf4f (patch) | |
tree | a0fc5f434d12df05d34b7809c142d96a3880004d /audio | |
parent | bea754e1ec47caf9e0473c3c6675bc9bbe7eceb0 (diff) | |
download | FreeBSD-ports-3bc17705e918b6a7c26d4212d014c95fb6efbf4f.zip FreeBSD-ports-3bc17705e918b6a7c26d4212d014c95fb6efbf4f.tar.gz |
Use CUT and FIND macros.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/csound-manual/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/audio/csound-manual/Makefile b/audio/csound-manual/Makefile index df8bdfd..29a544b 100644 --- a/audio/csound-manual/Makefile +++ b/audio/csound-manual/Makefile @@ -41,8 +41,9 @@ pre-extract: pre-install: ${RM} -f ${PLIST} - cd ${WRKDIR}/manual && find -s . -type f | cut -c3-999 >> ${PLIST} \ - && find * -type d | ${SED} -e 's:^:@dirrm :' >> ${PLIST} + cd ${WRKDIR}/manual && ${FIND} -s . -type f | \ + ${CUT} -c3-999 >> ${PLIST} \ + && ${FIND} * -type d | ${SED} -e 's:^:@dirrm :' >> ${PLIST} do-install: cd ${WRKSRC} && pax -r -w * ${PREFIX} |