summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2019-01-07 13:23:52 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-01-11 10:39:30 +0000
commit46f6f6a5f9de5e7f8f32f6ae768af61ec20ade4a (patch)
treef05d3efd529fe9e034ebf0b7cacbdf78d17a8829 /bitbake
parentae68f1481a5eb9c6dde16db470df7f7ff1d33544 (diff)
downloadpoky-46f6f6a5f9de5e7f8f32f6ae768af61ec20ade4a.tar.gz
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>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index f44eff4675..704a6c45d4 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1167,7 +1167,7 @@ class RunQueueData:
1167 procdep.append(fn_from_tid(dep) + "." + taskname_from_tid(dep)) 1167 procdep.append(fn_from_tid(dep) + "." + taskname_from_tid(dep))
1168 (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) 1168 (mc, fn, taskname, taskfn) = split_tid_mcfn(tid)
1169 self.runtaskentries[tid].hash = bb.parse.siggen.get_taskhash(taskfn, taskname, procdep, self.dataCaches[mc]) 1169 self.runtaskentries[tid].hash = bb.parse.siggen.get_taskhash(taskfn, taskname, procdep, self.dataCaches[mc])
1170 self.runtaskentries[tid].unihash = bb.parse.siggen.get_unihash(fn + "." + taskname) 1170 self.runtaskentries[tid].unihash = bb.parse.siggen.get_unihash(taskfn + "." + taskname)
1171 1171
1172 def dump_data(self): 1172 def dump_data(self):
1173 """ 1173 """