[oe-commits] [bitbake] 01/02: bitbake: runqueue: Use multiconfig name to fetch unihash

git at git.openembedded.org git at git.openembedded.org
Tue Jan 8 11:47:50 UTC 2019


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

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

commit 5e7f4e77e27bceaf6c68137cacb4f8d7d7de49dd
Author: Joshua Watt <jpewhacker at gmail.com>
AuthorDate: Mon Jan 7 13:23:52 2019 -0600

    bitbake: runqueue: Use multiconfig name to fetch unihash
    
    The unihash should be fetched using the task filename that includes the
    multiconfig prefixes.
    
    [YOCTO #13124]
    
    Signed-off-by: Joshua Watt <JPEWhacker at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index f44eff4..704a6c4 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -1167,7 +1167,7 @@ class RunQueueData:
             procdep.append(fn_from_tid(dep) + "." + taskname_from_tid(dep))
         (mc, fn, taskname, taskfn) = split_tid_mcfn(tid)
         self.runtaskentries[tid].hash = bb.parse.siggen.get_taskhash(taskfn, taskname, procdep, self.dataCaches[mc])
-        self.runtaskentries[tid].unihash = bb.parse.siggen.get_unihash(fn + "." + taskname)
+        self.runtaskentries[tid].unihash = bb.parse.siggen.get_unihash(taskfn + "." + taskname)
 
     def dump_data(self):
         """

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


More information about the Openembedded-commits mailing list