[oe-commits] [bitbake] 04/04: fixup

git at git.openembedded.org git at git.openembedded.org
Tue Jan 14 14:39:54 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.

commit 7ffd1b579f362eef427083c1bb4777e5d5bae7f9
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