svn commit: r374630 - head/Mk/Uses

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat Dec 13 04:02:03 UTC 2014


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 \


More information about the svn-ports-head mailing list