diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-10-12 12:46:38 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-19 18:01:16 +0100 |
commit | 2f3ebdfa5f42dae51063b043cc4b0fbe20b40064 (patch) | |
tree | e2e7bc727efb69b206fcd899afad5aea6fbaca93 /meta/recipes-devtools | |
parent | 199298b6b114db09fd8ff100642ae101050a2e9a (diff) | |
download | openembedded-core-2f3ebdfa5f42dae51063b043cc4b0fbe20b40064.tar.gz openembedded-core-2f3ebdfa5f42dae51063b043cc4b0fbe20b40064.tar.bz2 openembedded-core-2f3ebdfa5f42dae51063b043cc4b0fbe20b40064.zip |
PACKAGES_DYNAMIC: use regexp not glob
* bitbake uses PACKAGES_DYNAMIC as regexp
^ could make matching faster (and it will be more clear that we're expecting regexp not glob)
* made all those last '-' optional, use .* (or nothing)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/perl/perl_5.14.2.bb | 4 |
1 files changed, 2 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 d566a79a03..356ddb1dd6 100644 --- a/meta/recipes-devtools/perl/perl_5.14.2.bb +++ b/meta/recipes-devtools/perl/perl_5.14.2.bb @@ -310,8 +310,8 @@ python populate_packages_prepend () { d.setVar("RRECOMMENDS_${PN}-modules", d.getVar('PACKAGES', True).replace('${PN}-modules ', '').replace('${PN}-dbg ', '').replace('${PN}-misc ', '').replace('${PN}-dev ', '').replace('${PN}-pod ', '').replace('${PN}-doc ', '')) } -PACKAGES_DYNAMIC = "perl-module-*" -PACKAGES_DYNAMIC_virtclass-nativesdk = "nativesdk-perl-module-*" +PACKAGES_DYNAMIC = "^perl-module-.*" +PACKAGES_DYNAMIC_virtclass-nativesdk = "^nativesdk-perl-module-.*" RPROVIDES_perl-lib = "perl-lib" |