From 388dbe4928ed7a3a46c34f16092de22979a9d52c Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 17 Nov 2011 14:01:06 +0000 Subject: [PATCH] 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. (Bitbake rev: 727ca945177ce9bd44515cf611e3e95a09466d98) Signed-off-by: Richard Purdie --- bitbake/lib/bb/siggen.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index 611772a27f..217f29b3e2 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: