summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-17 14:01:06 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-18 10:44:41 +0000
commit727ca945177ce9bd44515cf611e3e95a09466d98 (patch)
tree656a8f6703b7ae82d5874da5ee1392e38cc8fbc0
parent165a22ddcc647b945707fb5c483146bb336d5f66 (diff)
downloadbitbake-727ca945177ce9bd44515cf611e3e95a09466d98.tar.gz
siggen.py: Include list of variables in hashes
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>
-rw-r--r--lib/bb/siggen.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index 611772a27..217f29b3e 100644
--- a/lib/bb/siggen.py
+++ b/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: