[oe-commits] org.oe.dev perl 5.8.8: Fix to tell bitbake about the perl module packages. I'd left out

lenehan commit openembedded-commits at lists.openembedded.org
Tue May 1 16:33:13 UTC 2007


perl 5.8.8: Fix to tell bitbake about the perl module packages. I'd left out
the PACKAGES_DYNAMIC declaration for the perl modules. This declaration
appears to be global though - so if either of the older perl versions exist
it actually works - bitbake picks up the definition from the older recipes
even though it isn't building them. This shows up as "No providers of
runtime build target <x>" errors where x is a perl module. Thanks to Koen
for figuring this one out.

Author: lenehan at openembedded.org
Branch: org.openembedded.dev
Revision: c18c0af8649c4f70f923fefaa9e42158e83c3881
ViewMTN: http://monotone.openembedded.org/revision.psp?id=c18c0af8649c4f70f923fefaa9e42158e83c3881
Files:
1
packages/perl/perl_5.8.8.bb
Diffs:

#
# mt diff -r53e01bb2b4e2632ae8ee8f97acb15267136337d6 -rc18c0af8649c4f70f923fefaa9e42158e83c3881
#
# 
# 
# patch "packages/perl/perl_5.8.8.bb"
#  from [6202a308239ec2913617aa23ce484258a0042db5]
#    to [94e872f69b57a0550fe01b064c3eee8a0b02df2c]
# 
============================================================
--- packages/perl/perl_5.8.8.bb	6202a308239ec2913617aa23ce484258a0042db5
+++ packages/perl/perl_5.8.8.bb	94e872f69b57a0550fe01b064c3eee8a0b02df2c
@@ -5,7 +5,7 @@ DEPENDS = "virtual/db perl-native grep-n
 PRIORITY = "optional"
 # We need gnugrep (for -I)
 DEPENDS = "virtual/db perl-native grep-native"
-PR = "r9"
+PR = "r10"
 
 # Major part of version
 PVM = "5.8"
@@ -185,6 +185,8 @@ python populate_packages_prepend () {
         do_split_packages(d, datadir, '(.*)\.(pm|pl|e2x)', 'perl-module-%s', 'perl module %s', recursive=True, allow_dirs=False, match_path=True)
 }
 
+PACKAGES_DYNAMIC = "perl-module-*"
+
 require perl-rdepends_${PV}.inc
 require perl-rprovides.inc
 






More information about the Openembedded-commits mailing list