diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-22 08:43:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-22 09:47:46 +0100 |
commit | 072a6d352f55bbe481b04db02aa6d9cde7d90057 (patch) | |
tree | 2800e3739283950d2e6b5fd983a2b4c0018488bd | |
parent | caba9cbfce09f19eb27f4c6615c0c5c48e1a2952 (diff) | |
download | ast2050-yocto-poky-072a6d352f55bbe481b04db02aa6d9cde7d90057.zip ast2050-yocto-poky-072a6d352f55bbe481b04db02aa6d9cde7d90057.tar.gz |
perl: Fix perl module dependency issues
With the move of the strict/vars/config/warnings modules to the main perl
recipe, we need to RPROVIDE those modules to ensure that package dependencies
on those modules continue to work correctly.
(From OE-Core rev: fe88ae8605f22d9075e4200159aa66605ec36587)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/perl/perl_5.14.2.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb index 799b86f..48ce156 100644 --- a/meta/recipes-devtools/perl/perl_5.14.2.bb +++ b/meta/recipes-devtools/perl/perl_5.14.2.bb @@ -250,6 +250,7 @@ FILES_${PN} = "${bindir}/perl ${bindir}/perl${PV} \ ${libdir}/perl/${PV}/warnings \ ${libdir}/perl/${PV}/vars.pm \ " +RPROVIDES_${PN} += "perl-module-strict perl-module-vars perl-module-config perl-module-warnings" FILES_${PN}-dev = "${libdir}/perl/${PV}/CORE" FILES_${PN}-lib = "${libdir}/libperl.so* \ ${libdir}/perl5 \ |