diff options
| author | Kang Kai <kai.kang@windriver.com> | 2013-01-16 17:54:42 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-16 11:12:42 +0000 |
| commit | d4c3cc8cff9311ff873304410e3092921dbe6ddc (patch) | |
| tree | 7edfd22394d0d7d4ec5247f7d8c8dc999c5c14f9 /meta/recipes-devtools/perl/perl-tests.inc | |
| parent | 6080d1dc719c38fd97c2abd38e0ad938fbf6f452 (diff) | |
| download | openembedded-core-d4c3cc8cff9311ff873304410e3092921dbe6ddc.tar.gz openembedded-core-d4c3cc8cff9311ff873304410e3092921dbe6ddc.tar.bz2 openembedded-core-d4c3cc8cff9311ff873304410e3092921dbe6ddc.zip | |
perl: fix installed but not shipped issue
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 <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl/perl-tests.inc')
| -rw-r--r-- | meta/recipes-devtools/perl/perl-tests.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/perl-tests.inc b/meta/recipes-devtools/perl/perl-tests.inc index e6de088769..b97b46781d 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/ |
