diff options
author | trevor <trevor@FreeBSD.org> | 2002-05-25 23:24:43 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2002-05-25 23:24:43 +0800 |
commit | bea754e1ec47caf9e0473c3c6675bc9bbe7eceb0 (patch) | |
tree | 4e59393674300434a526a25d1838b6073bf1e018 /audio | |
parent | b28daa9c0f0e56d25d3fcf92901797134d906952 (diff) | |
download | freebsd-ports-graphics-bea754e1ec47caf9e0473c3c6675bc9bbe7eceb0.tar.gz freebsd-ports-graphics-bea754e1ec47caf9e0473c3c6675bc9bbe7eceb0.tar.zst freebsd-ports-graphics-bea754e1ec47caf9e0473c3c6675bc9bbe7eceb0.zip |
Use FIND macro.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/csound/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/csound/Makefile b/audio/csound/Makefile index 665033c6876..38f48f9fa5b 100644 --- a/audio/csound/Makefile +++ b/audio/csound/Makefile @@ -34,7 +34,7 @@ pre-build: post-build: ${RM} -f ${PLIST} - for i in `find ${WRKDIR} -type f -perm 755`; do \ + for i in `${FIND} ${WRKDIR} -type f -perm 755`; do \ ${ECHO_CMD} bin/`${BASENAME} $${i}` >> ${PLIST}; \ done ${ECHO_CMD} share/csound/csound.xmg >> ${PLIST} |