summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/siggen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index 5ef82d7be0..ab228e4148 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -347,7 +347,7 @@ class SignatureGeneratorBasicHash(SignatureGeneratorBasic):
347 347
348 def stampcleanmask(self, stampbase, fn, taskname, extrainfo): 348 def stampcleanmask(self, stampbase, fn, taskname, extrainfo):
349 return self.stampfile(stampbase, fn, taskname, extrainfo, clean=True) 349 return self.stampfile(stampbase, fn, taskname, extrainfo, clean=True)
350 350
351 def invalidate_task(self, task, d, fn): 351 def invalidate_task(self, task, d, fn):
352 bb.note("Tainting hash to force rebuild of task %s, %s" % (fn, task)) 352 bb.note("Tainting hash to force rebuild of task %s, %s" % (fn, task))
353 bb.build.write_taint(task, d, fn) 353 bb.build.write_taint(task, d, fn)
@@ -636,7 +636,7 @@ def compare_sigfiles(a, b, recursecb=None, color=False, collapsed=False):
636 if collapsed: 636 if collapsed:
637 output.extend(recout) 637 output.extend(recout)
638 else: 638 else:
639 # If a dependent hash changed, might as well print the line above and then defer to the changes in 639 # If a dependent hash changed, might as well print the line above and then defer to the changes in
640 # that hash since in all likelyhood, they're the same changes this task also saw. 640 # that hash since in all likelyhood, they're the same changes this task also saw.
641 output = [output[-1]] + recout 641 output = [output[-1]] + recout
642 642