diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-09 10:18:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-09 10:25:47 +0000 |
commit | 4aac8d87d47636f1d3a7f6688d36bf4bcae4448a (patch) | |
tree | 2b7f861b0934dae101bc702373481f3ddfef3a23 /bitbake/lib/bb/data.py | |
parent | b7ff099556d5387465e2cac8e1211ef8a8f5e962 (diff) | |
download | poky-4aac8d87d47636f1d3a7f6688d36bf4bcae4448a.tar.gz |
bitbake: data: Ensure we add the contains keys in a particular order
If we don't sort the data, the values can reorder changing the
signatures meaning we get confused builds and significant cache
misses.
(Bitbake rev: 8f453bb11d72afc90a986ac604b3477d97eaf9a8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/data.py')
-rw-r--r-- | bitbake/lib/bb/data.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py index 3d2c6a4975..58408036dd 100644 --- a/bitbake/lib/bb/data.py +++ b/bitbake/lib/bb/data.py | |||
@@ -301,9 +301,9 @@ def build_dependencies(key, keys, shelldeps, varflagsexcl, d): | |||
301 | 301 | ||
302 | def handle_contains(value, contains, d): | 302 | def handle_contains(value, contains, d): |
303 | newvalue = "" | 303 | newvalue = "" |
304 | for k in contains: | 304 | for k in sorted(contains): |
305 | l = (d.getVar(k, True) or "").split() | 305 | l = (d.getVar(k, True) or "").split() |
306 | for word in contains[k]: | 306 | for word in sorted(contains[k]): |
307 | if word in l: | 307 | if word in l: |
308 | newvalue += "\n%s{%s} = Set" % (k, word) | 308 | newvalue += "\n%s{%s} = Set" % (k, word) |
309 | else: | 309 | else: |