summaryrefslogtreecommitdiffstats
path: root/bitbake
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-23 13:19:49 +0000
commit99069699f1fd1f37f3fdc1435cae8ba702db65c9 (patch)
tree97591996588f2059eecc2996d485e4158ed5d04f /bitbake
parentfecf58b2a5959cc086e645171529c6fa7fcd4452 (diff)
downloadpoky-99069699f1fd1f37f3fdc1435cae8ba702db65c9.tar.gz
bitbake: 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). (Bitbake rev: cccd1578d84f041cd0c2dcddb91f317c69af70de) Signed-off-by: Patrick Ohly <patrick.ohly@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index e3f5317f7c..bc8574aa1e 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -762,7 +762,7 @@ class BBCooker:
762 @staticmethod 762 @staticmethod
763 def add_mc_prefix(mc, pn): 763 def add_mc_prefix(mc, pn):
764 if mc: 764 if mc:
765 return "multiconfig:%s.%s" % (mc, pn) 765 return "multiconfig:%s:%s" % (mc, pn)
766 return pn 766 return pn
767 767
768 def buildDependTree(self, rq, taskdata): 768 def buildDependTree(self, rq, taskdata):