[gnome-continuous-yocto/gnomeostree-3.28-rocko: 5277/8267] bitbake: cooker.py: use correct multiconfig prefix in dependency graph



commit 99069699f1fd1f37f3fdc1435cae8ba702db65c9
Author: Patrick Ohly <patrick ohly intel com>
Date:   Wed Mar 22 14:36:10 2017 +0100

    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>

 bitbake/lib/bb/cooker.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index e3f5317..bc8574a 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/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):


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]