diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2014-12-13 04:02:02 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2014-12-13 04:02:02 +0000 |
commit | fc96e70c8886be1484fc791514043d9f38693d55 (patch) | |
tree | 746f9bba8e6bb495e599b2bf56f0e5a6e028f7bb /Mk | |
parent | e0d6406fc7aa3bf9527f3e87f7cacefe2a794ae3 (diff) | |
download | ports-fc96e70c8886be1484fc791514043d9f38693d55.tar.gz ports-fc96e70c8886be1484fc791514043d9f38693d55.zip |
Notes
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Uses/perl5.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/Uses/perl5.mk b/Mk/Uses/perl5.mk index cc8581ba57ef..3e6fcf4d0e81 100644 --- a/Mk/Uses/perl5.mk +++ b/Mk/Uses/perl5.mk @@ -271,7 +271,7 @@ PACKLIST_DIR?= ${PREFIX}/${SITE_ARCH_REL}/auto 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 \ |