diff options
| author | Ross Burton <ross.burton@arm.com> | 2022-10-12 12:21:04 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-10-25 13:42:02 +0100 |
| commit | c1304a0231fd79f90a6a05750757689a5c4cc1eb (patch) | |
| tree | 598d5b98166f2209a90e1bef2f9a69b6a24b033a | |
| parent | dce301921264094829cc01461bd42227d21753ec (diff) | |
| download | poky-c1304a0231fd79f90a6a05750757689a5c4cc1eb.tar.gz | |
populate_sdk_base: ensure ptest-pkgs pulls in ptest-runner
Since "package_manager: Change complementary package handling to not
include soft dependencies"[1], complementary packages don't pull in
recommendations, just depends. However, ptest.bbclass has a recommends
on ptest-runner, so if ptest packages are in an image via the ptest-pkgs
IMAGE_FEATURE, ptest-runner doesn't get installed.
[ YOCTO #14928 ]
[1] oe-core b44b0b9294675f89aa51ff84f532664f4c479677
(From OE-Core rev: ecff0642be5781f7f6cca617158b04ac9a0e85f0)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/classes-recipe/populate_sdk_base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/populate_sdk_base.bbclass b/meta/classes-recipe/populate_sdk_base.bbclass index 0be108ad98..64a4a58bef 100644 --- a/meta/classes-recipe/populate_sdk_base.bbclass +++ b/meta/classes-recipe/populate_sdk_base.bbclass | |||
| @@ -15,7 +15,7 @@ COMPLEMENTARY_GLOB[staticdev-pkgs] = '*-staticdev' | |||
| 15 | COMPLEMENTARY_GLOB[doc-pkgs] = '*-doc' | 15 | COMPLEMENTARY_GLOB[doc-pkgs] = '*-doc' |
| 16 | COMPLEMENTARY_GLOB[dbg-pkgs] = '*-dbg' | 16 | COMPLEMENTARY_GLOB[dbg-pkgs] = '*-dbg' |
| 17 | COMPLEMENTARY_GLOB[src-pkgs] = '*-src' | 17 | COMPLEMENTARY_GLOB[src-pkgs] = '*-src' |
| 18 | COMPLEMENTARY_GLOB[ptest-pkgs] = '*-ptest' | 18 | COMPLEMENTARY_GLOB[ptest-pkgs] = '*-ptest ptest-runner' |
| 19 | COMPLEMENTARY_GLOB[bash-completion-pkgs] = '*-bash-completion' | 19 | COMPLEMENTARY_GLOB[bash-completion-pkgs] = '*-bash-completion' |
| 20 | 20 | ||
| 21 | def complementary_globs(featurevar, d): | 21 | def complementary_globs(featurevar, d): |
