]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake: cooker.py: use correct multiconfig prefix in dependency graph
authorPatrick Ohly <patrick.ohly@intel.com>
Wed, 22 Mar 2017 13:36:10 +0000 (14:36 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 23 Mar 2017 13:19:49 +0000 (13:19 +0000)
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

index e3f5317f7cbfc9ac796a883f3a26de922c1d13fa..bc8574aa1e1ed61b81638d1f68031b3193893b25 100644 (file)
@@ -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):