All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cooker.py: use correct multiconfig prefix in dependency graph
@ 2017-03-22 13:36 Patrick Ohly
  0 siblings, 0 replies; only message in thread
From: Patrick Ohly @ 2017-03-22 13:36 UTC (permalink / raw)
  To: bitbake-devel

The dependency graph in the bb.event.DepTreeGenerated and the
corresponding pn-buildlist and task-depends.dot from "bitbake -g"
contained entries like multiconfig:qemuarm.gcc (dot as last separator)
instead of the correct multiconfig:qemuarm:gcc (colon as separator).

Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
---
 lib/bb/cooker.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 662a7ac..3e6ab30 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -762,7 +762,7 @@ class BBCooker:
     @staticmethod
     def add_mc_prefix(mc, pn):
         if mc:
-            return "multiconfig:%s.%s" % (mc, pn)
+            return "multiconfig:%s:%s" % (mc, pn)
         return pn
 
     def buildDependTree(self, rq, taskdata):

base-commit: 1ff9b3c669fa187f152de7b8b57d14c2468d926c
-- 
git-series 0.9.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-03-22 13:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-22 13:36 [PATCH] cooker.py: use correct multiconfig prefix in dependency graph Patrick Ohly

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.