diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2023-05-10 16:21:14 +0200 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-06-06 04:05:58 -1000 |
commit | be8d8da9a55170ec5d9cfa5f115c9697d5fa3104 (patch) | |
tree | 2fa4024d597fce137be7832e2f30d0cb6809a5e0 | |
parent | c33315f7cbd77942e6ae5772756b19c39a392930 (diff) | |
download | poky-be8d8da9a55170ec5d9cfa5f115c9697d5fa3104.tar.gz |
populate_sdk_base.bbclass: respect MLPREFIX for ptest-pkgs's ptest-runner
* since "populate_sdk_base: ensure ptest-pkgs pulls in ptest-runner" change:
https://git.openembedded.org/openembedded-core/commit/?id=ecff0642be5781f7f6cca617158b04ac9a0e85f0
in multilib build when building lib32-foo-image it can pick wrong
ptest-runner package if it was built in the same TMPDIR before the
image, do_rootfs then fails to find it, if the package manager config
doesn't have 64-bit feed enabled:
opkg_prepare_url_for_install: Couldn't find anything to satisfy 'ptest-runner'
(From OE-Core rev: 3cdfdeb8f18dd467e2c5c6e9d6e3739aaf5c0c3d)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 4d24749e7e94881bb952f5c927f0012eb70d4390)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-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 1c619ef3cf..b23ea26d40 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 ptest-runner' | 18 | COMPLEMENTARY_GLOB[ptest-pkgs] = '*-ptest ${MLPREFIX}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): |