summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/siggen.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index 96807c46cd..ffd8fcaf36 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -515,6 +515,10 @@ class SignatureGeneratorUniHashMixIn(object):
515 if self.setscenetasks and tid not in self.setscenetasks: 515 if self.setscenetasks and tid not in self.setscenetasks:
516 return 516 return
517 517
518 # This can happen if locked sigs are in action. Detect and just abort
519 if taskhash != self.taskhash[tid]:
520 return
521
518 # Sanity checks 522 # Sanity checks
519 cache_unihash = self._get_unihash(tid, checkkey=taskhash) 523 cache_unihash = self._get_unihash(tid, checkkey=taskhash)
520 if cache_unihash is None: 524 if cache_unihash is None: