From patchwork Wed Jan 16 09:54:42 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/1] perl: fix installed but not shipped issue Date: Wed, 16 Jan 2013 09:54:42 -0000 From: Kang Kai X-Patchwork-Id: 42699 Message-Id: <7c170f98ca5e423f031a3c94ff19506f04c454d8.1358322551.git.kai.kang@windriver.com> To: Cc: Zhenfeng.Zhao@windriver.com, openembedded-core@lists.openembedded.org It shows warning when bitbake perl: WARNING: QA Issue: perl: Files/directories were installed but not shipped /usr/lib/perl/5.14.2/auto/XS/Typemap That because file Typemap.so is not install correctly. Fix it. Signed-off-by: Kang Kai --- meta/recipes-devtools/perl/perl-tests.inc | 1 + meta/recipes-devtools/perl/perl_5.14.2.bb | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/meta/recipes-devtools/perl/perl-tests.inc b/meta/recipes-devtools/perl/perl-tests.inc index e6de088..b97b467 100644 --- a/meta/recipes-devtools/perl/perl-tests.inc +++ b/meta/recipes-devtools/perl/perl-tests.inc @@ -25,6 +25,7 @@ do_install_append () { cp -pv lib/XS/Typemap.pm ${D}${libdir}/perl/${PV}/XS/ mkdir -p ${D}${libdir}/perl/${PV}/auto/XS/APItest cp -pv lib/auto/XS/APItest/APItest.so ${D}${libdir}/perl/${PV}/auto/XS/APItest/ + mkdir -p ${D}${libdir}/perl/${PV}/auto/XS/Typemap cp -pv lib/auto/XS/Typemap/Typemap.so ${D}${libdir}/perl/${PV}/auto/XS/Typemap/ cp -pv cpan/Digest-MD5/README ${D}${PERL_TEST_DIR}/cpan/Digest-MD5/ cp -pv cpan/Digest-MD5/MD5.xs ${D}${PERL_TEST_DIR}/cpan/Digest-MD5/ diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb index e62e8ec..f924ebd 100644 --- a/meta/recipes-devtools/perl/perl_5.14.2.bb +++ b/meta/recipes-devtools/perl/perl_5.14.2.bb @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ # We need gnugrep (for -I) DEPENDS = "virtual/db grep-native" DEPENDS += "gdbm zlib" -PR = "r17" +PR = "r18" # 5.10.1 has Module::Build built-in PROVIDES += "libmodule-build-perl"