* [PATCH] siggen.py: Include list of variables in hashes
@ 2011-11-17 14:01 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2011-11-17 14:01 UTC (permalink / raw)
To: openembedded-core
Ensure that the list of dependencies is included in the hash
as well as their contents
Prior to this, adding or removing dependencies with values
of "None" would not change the hash, despite diffsigs reporting
this difference.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index 1225791..4ccfc7d 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -101,6 +101,7 @@ class SignatureGeneratorBasic(SignatureGenerator):
alldeps = seen - self.basewhitelist
for dep in sorted(alldeps):
+ data = data + dep
if dep in lookupcache:
var = lookupcache[dep]
else:
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-11-17 14:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-17 14:01 [PATCH] siggen.py: Include list of variables in hashes Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox