mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
multilib.bbclass: add RDEPENDS related check back
When multilib enabled, instead of checking RDEPENDS_lib32-python3-core, we should check RDEPENDS:lib32-python3-core as new override syntax applied. So switch to new override syntax to make sure the related RDEPENDS check logic is in effect. (From OE-Core rev: 63d53e515d8f3d92a4143dc25c2e639c7fb8c3fb) Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
5ed27d8d9a
commit
b24b417ebf
@@ -196,7 +196,7 @@ PACKAGEFUNCS:append = " do_package_qa_multilib"
|
|||||||
python do_package_qa_multilib() {
|
python do_package_qa_multilib() {
|
||||||
|
|
||||||
def check_mlprefix(pkg, var, mlprefix):
|
def check_mlprefix(pkg, var, mlprefix):
|
||||||
values = bb.utils.explode_deps(d.getVar('%s_%s' % (var, pkg)) or d.getVar(var) or "")
|
values = bb.utils.explode_deps(d.getVar('%s:%s' % (var, pkg)) or d.getVar(var) or "")
|
||||||
candidates = []
|
candidates = []
|
||||||
for i in values:
|
for i in values:
|
||||||
if i.startswith('virtual/'):
|
if i.startswith('virtual/'):
|
||||||
|
|||||||
Reference in New Issue
Block a user