Skip to content

Instantly share code, notes, and snippets.

@kergoth
Last active November 22, 2017 20:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kergoth/8b0c01b86d8ab4d9330527ba9c2bb8e2 to your computer and use it in GitHub Desktop.
Save kergoth/8b0c01b86d8ab4d9330527ba9c2bb8e2 to your computer and use it in GitHub Desktop.
diff --git c/lib/bb/siggen.py i/lib/bb/siggen.py
index f71190ad..43d70ea6 100644
--- c/lib/bb/siggen.py
+++ i/lib/bb/siggen.py
@@ -163,12 +163,10 @@ class SignatureGeneratorBasic(SignatureGenerator):
bb.warn("Error during finalise of %s" % fn)
raise
- #Slow but can be useful for debugging mismatched basehashes
- #for task in self.taskdeps[fn]:
- # self.dump_sigtask(fn, task, d.getVar("STAMP"), False)
-
for task in taskdeps:
d.setVar("BB_BASEHASH_task-%s" % task, self.basehash[fn + "." + task])
+ # Slow but can be useful for debugging mismatched basehashes
+ self.dump_sigtask(fn, task, d.getVar("STAMP"), False)
def rundep_check(self, fn, recipename, task, dep, depname, dataCache):
# Return True if we should keep the dependency, False to drop it
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment