aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Ohly <patrick.ohly@intel.com>2017-03-22 14:36:10 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-22 14:51:48 +0000
commitcccd1578d84f041cd0c2dcddb91f317c69af70de (patch)
tree2d14d6cfb6214827c83820453f1911c8ffac8881
parentbaa417e44b009149eb1dfb07d5a488740b6e68ef (diff)
downloadbitbake-cccd1578d84f041cd0c2dcddb91f317c69af70de.tar.gz
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 <patrick.ohly@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
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):