[oe-commits] [bitbake] 01/04: cooker.py: use correct multiconfig prefix in dependency graph

git at git.openembedded.org git at git.openembedded.org
Wed Mar 22 14:55:34 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

commit cccd1578d84f041cd0c2dcddb91f317c69af70de
Author: Patrick Ohly <patrick.ohly at intel.com>
AuthorDate: Wed Mar 22 14:36:10 2017 +0100

    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 at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 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 e3f5317..bc8574a 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):

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list