All of lore.kernel.org
 help / color / mirror / Atom feed
* [Fwd: [OE-core] [PATCH] siggen.py: Include list of variables in hashes]
@ 2011-11-17 14:02 Richard Purdie
  0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2011-11-17 14:02 UTC (permalink / raw)
  To: bitbake-devel

[-- Attachment #1: Type: text/plain, Size: 2 bytes --]



[-- Attachment #2: Forwarded message — [OE-core] [PATCH] siggen.py: Include list of variables in hashes --]
[-- Type: message/rfc822, Size: 6176 bytes --]

From: Richard Purdie <richard.purdie@linuxfoundation.org>
To: openembedded-core <openembedded-core@lists.openembedded.org>
Subject: [OE-core] [PATCH] siggen.py: Include list of variables in hashes
Date: Thu, 17 Nov 2011 14:01:06 +0000
Message-ID: <1321538466.27449.0.camel@ted>

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:



_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-11-17 14:09 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:02 [Fwd: [OE-core] [PATCH] siggen.py: Include list of variables in hashes] Richard Purdie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.