Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/3] multilib.bbclass: add RDEPENDS related check back
@ 2021-09-14  7:06 Yu, Mingli
  2021-09-14  7:06 ` [PATCH 2/3] insane.bbclass: add FILERDEPENDS " Yu, Mingli
  2021-09-14  7:06 ` [PATCH 3/3] python3: fix multilib qa issue Yu, Mingli
  0 siblings, 2 replies; 3+ messages in thread
From: Yu, Mingli @ 2021-09-14  7:06 UTC (permalink / raw)
  To: openembedded-core

From: Mingli Yu <mingli.yu@windriver.com>

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.

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 meta/classes/multilib.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass
index 3cbda5d806..b210c49c0c 100644
--- a/meta/classes/multilib.bbclass
+++ b/meta/classes/multilib.bbclass
@@ -196,7 +196,7 @@ PACKAGEFUNCS:append = " do_package_qa_multilib"
 python do_package_qa_multilib() {
 
     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 = []
         for i in values:
             if i.startswith('virtual/'):
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-09-14  7:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-14  7:06 [PATCH 1/3] multilib.bbclass: add RDEPENDS related check back Yu, Mingli
2021-09-14  7:06 ` [PATCH 2/3] insane.bbclass: add FILERDEPENDS " Yu, Mingli
2021-09-14  7:06 ` [PATCH 3/3] python3: fix multilib qa issue Yu, Mingli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox