Date: Sat, 13 Dec 2014 04:02:03 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374630 - head/Mk/Uses Message-ID: <201412130402.sBD423C2095893@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sat Dec 13 04:02:02 2014 New Revision: 374630 URL: https://svnweb.freebsd.org/changeset/ports/374630 QAT: https://qat.redports.org/buildarchive/r374630/ Log: - Use FIND Modified: head/Mk/Uses/perl5.mk Modified: head/Mk/Uses/perl5.mk ============================================================================== --- head/Mk/Uses/perl5.mk Sat Dec 13 04:00:51 2014 (r374629) +++ head/Mk/Uses/perl5.mk Sat Dec 13 04:02:02 2014 (r374630) @@ -271,7 +271,7 @@ PACKLIST_DIR?= ${PREFIX}/${SITE_ARCH_REL fix-perl-things: # Remove STAGEDIR from .packlist and add the file to the plist. @(if [ -d ${STAGEDIR}${PACKLIST_DIR} ] ; then \ - find ${STAGEDIR}${PACKLIST_DIR} -name .packlist | while read f ; do \ + ${FIND} ${STAGEDIR}${PACKLIST_DIR} -name .packlist | while read f ; do \ ${SED} -i '' 's|^${STAGEDIR}||' "$$f"; \ ${ECHO} $$f | ${SED} -e 's|^${STAGEDIR}||' >> ${TMPPLIST}; \ done \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412130402.sBD423C2095893>