[oe-commits] [bitbake] branch master-next updated: fixup

git at git.openembedded.org git at git.openembedded.org
Mon Jan 13 17:56:46 UTC 2020


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

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

The following commit(s) were added to refs/heads/master-next by this push:
     new f413159  fixup
f413159 is described below

commit f4131596e9decd0eaca3018580c595d5f0661af2
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Mon Jan 13 17:54:38 2020 +0000

    fixup
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/siggen.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index 044ce52..ffd8fca 100644
--- a/lib/bb/siggen.py
+++ b/lib/bb/siggen.py
@@ -432,14 +432,16 @@ class SignatureGeneratorUniHashMixIn(object):
         return super().get_stampfile_hash(tid)
 
     def set_unihash(self, tid, unihash):
-        key = self.tidtopn[tid] + ":" + bb.runqueue.taskname_from_tid(tid)
+        (mc, fn, taskname, taskfn) = bb.runqueue.split_tid_mcfn(tid)
+        key = mc + ":" + self.tidtopn[tid] + ":" + taskname
         self.unitaskhashes[key] = (self.taskhash[tid], unihash)
         self.unihash[tid] = unihash
 
     def _get_unihash(self, tid, checkkey=None):
         if tid not in self.tidtopn:
             return None
-        key = self.tidtopn[tid] + ":" + bb.runqueue.taskname_from_tid(tid)
+        (mc, fn, taskname, taskfn) = bb.runqueue.split_tid_mcfn(tid)
+        key = mc + ":" + self.tidtopn[tid] + ":" + taskname
         if key not in self.unitaskhashes:
             return None
         if not checkkey:

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


More information about the Openembedded-commits mailing list