diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-02-29 20:36:08 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-01 15:46:58 +0000 |
commit | 2bda13df6feee87ea6fcecdce96fb5234cfa5674 (patch) | |
tree | df6c45e4813e64c022675a9948e4dafd32e4947a /meta/recipes-devtools/perl | |
parent | 6cb72d5f008c6cbf4960d9dc260b82a056042b0f (diff) | |
download | openembedded-core-2bda13df6feee87ea6fcecdce96fb5234cfa5674.tar.gz openembedded-core-2bda13df6feee87ea6fcecdce96fb5234cfa5674.tar.bz2 openembedded-core-2bda13df6feee87ea6fcecdce96fb5234cfa5674.zip |
perl: remove empty directories to clean QA Warnings
WARNING: For recipe perl, the following files/directories were installed but not shipped in any package:
WARNING: /usr/lib/perl/site_perl
WARNING: /usr/lib/perl/site_perl/5.14.2
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/perl')
-rw-r--r-- | meta/recipes-devtools/perl/perl_5.14.2.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb index 0abefe4150..6703b5cb3b 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 = "r2" +PR = "r3" # 5.10.1 has Module::Build built-in PROVIDES += "libmodule-build-perl" @@ -190,8 +190,10 @@ do_install() { ln -sf perl ${D}/${libdir}/perl5 - # Remove unwanted file + # Remove unwanted file and empty directories rm -f ${D}/${libdir}/perl/${PV}/.packlist + rmdir ${D}/${libdir}/perl/site_perl/${PV} + rmdir ${D}/${libdir}/perl/site_perl # Fix up shared library mv ${D}/${libdir}/perl/${PV}/CORE/libperl.so ${D}/${libdir}/libperl.so.${PV} |