diff options
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/sstatesig.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index 8d009bfdc6..7cecb59d8e 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py | |||
@@ -141,14 +141,13 @@ class SignatureGeneratorOEBasicHashMixIn(object): | |||
141 | return super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigs(dataCache, options) | 141 | return super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigs(dataCache, options) |
142 | 142 | ||
143 | def get_taskhash(self, tid, deps, dataCache): | 143 | def get_taskhash(self, tid, deps, dataCache): |
144 | h = super(bb.siggen.SignatureGeneratorBasicHash, self).get_taskhash(tid, deps, dataCache) | ||
145 | if tid in self.lockedhashes: | 144 | if tid in self.lockedhashes: |
146 | if self.lockedhashes[tid]: | 145 | if self.lockedhashes[tid]: |
147 | return self.lockedhashes[tid] | 146 | return self.lockedhashes[tid] |
148 | else: | 147 | else: |
149 | return h | 148 | return super().get_taskhash(tid, deps, dataCache) |
150 | 149 | ||
151 | h = super(bb.siggen.SignatureGeneratorBasicHash, self).get_taskhash(tid, deps, dataCache) | 150 | h = super().get_taskhash(tid, deps, dataCache) |
152 | 151 | ||
153 | (mc, _, task, fn) = bb.runqueue.split_tid_mcfn(tid) | 152 | (mc, _, task, fn) = bb.runqueue.split_tid_mcfn(tid) |
154 | 153 | ||