aboutsummaryrefslogtreecommitdiffstats
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-08 11:43:01 +0000
commit5e7f4e77e27bceaf6c68137cacb4f8d7d7de49dd (patch)
treef5cc62cca6e2433a404b82038e0f02a6a1596f8d
parent66f1b766997d53b4375fdd25719b1175f3828903 (diff)
downloadbitbake-5e7f4e77e27bceaf6c68137cacb4f8d7d7de49dd.tar.gz
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@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index f44eff467..704a6c45d 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):
"""