diff options
-rw-r--r-- | meta/recipes-devtools/perl/perl-ptest.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/perl/perl-ptest.inc b/meta/recipes-devtools/perl/perl-ptest.inc index caa2b61c9b..15afe2dab4 100644 --- a/meta/recipes-devtools/perl/perl-ptest.inc +++ b/meta/recipes-devtools/perl/perl-ptest.inc | |||
@@ -21,11 +21,11 @@ do_install_ptest () { | |||
21 | # Tweaks to make tests pass | 21 | # Tweaks to make tests pass |
22 | cp -pv lib/unicore/TestProp.pl ${D}${libdir}/perl/${PV}/unicore/ | 22 | cp -pv lib/unicore/TestProp.pl ${D}${libdir}/perl/${PV}/unicore/ |
23 | # Put all *.t files from the lib dir in the ptest package | 23 | # Put all *.t files from the lib dir in the ptest package |
24 | pushd lib | 24 | cd lib |
25 | for file in `find -name \*.t`; do | 25 | for file in `find -name \*.t`; do |
26 | tar -cf - $file | ( cd ${D}${libdir}/perl/${PV} && tar -xf - ) | 26 | tar -cf - $file | ( cd ${D}${libdir}/perl/${PV} && tar -xf - ) |
27 | done | 27 | done |
28 | popd | 28 | cd .. |
29 | 29 | ||
30 | mkdir -p ${D}${libdir}/perl/${PV}/XS | 30 | mkdir -p ${D}${libdir}/perl/${PV}/XS |
31 | cp -pv lib/XS/APItest.pm ${D}${libdir}/perl/${PV}/XS/ | 31 | cp -pv lib/XS/APItest.pm ${D}${libdir}/perl/${PV}/XS/ |