mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 00:32:12 +02:00
bitbake: bitbake: runqueue: Use multiconfig name to fetch unihash
The unihash should be fetched using the task filename that includes the multiconfig prefixes. [YOCTO #13124] (Bitbake rev: 5e7f4e77e27bceaf6c68137cacb4f8d7d7de49dd) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ae68f1481a
commit
46f6f6a5f9
@@ -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):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user