From cccd1578d84f041cd0c2dcddb91f317c69af70de Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Wed, 22 Mar 2017 14:36:10 +0100 Subject: cooker.py: use correct multiconfig prefix in dependency graph 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 Signed-off-by: Richard Purdie --- lib/bb/cooker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/bb/cooker.py') diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py index e3f5317f7..bc8574aa1 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): -- cgit 1.2.3-korg