diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2002-11-13 09:05:31 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2002-11-13 09:05:31 +0000 |
commit | 8ee755a2815209d65b437208cf5a228801a4d5ac (patch) | |
tree | ed2328565a42668c60beeff6106fd57ae85caae7 /lang/erlang | |
parent | Update to 0.47. (diff) |
find -> ${FIND}.
Diffstat (limited to 'lang/erlang')
-rw-r--r-- | lang/erlang/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/erlang/Makefile b/lang/erlang/Makefile index 7fd19dbe892c..29a4beedf4bb 100644 --- a/lang/erlang/Makefile +++ b/lang/erlang/Makefile @@ -118,11 +118,11 @@ post-install: @${CHMOD} -R o+rX-w,g+rX-w ${PREFIX}/lib/erlang @sslapp=`ls -d ${PREFIX}/lib/erlang/lib/ssl-* | tail -1`; \ cd $$sslapp/priv/obj && ${MAKE} && strip ../bin/ssl_esock - @cd ${PREFIX} ; find lib/erlang/* -type f -o -type l \ + @cd ${PREFIX} ; ${FIND} lib/erlang/* -type f -o -type l \ | ${GREP} -v "^lib/erlang/man" \ | sort \ > ${WRKDIR}/PLIST.lib-erlang - @cd ${PREFIX} ; find lib/erlang/* -type d | sort -r \ + @cd ${PREFIX} ; ${FIND} lib/erlang/* -type d | sort -r \ | ${GREP} -v "^lib/erlang/man" \ | ${SED} -e 's/^/@dirrm /g' \ >> ${WRKDIR}/PLIST.lib-erlang |