diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-09 17:17:38 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-15 20:08:15 -0800 |
commit | f0d5eb39c3ec939d4d42796ab53490d08c7609a5 (patch) | |
tree | bc9dcd8301649106cb1f3123da62b8aed00d445b /bitbake/lib/bb/data_smart.py | |
parent | 01b9ab89dea3b8ab9781b7d06e5024106ced1dd0 (diff) | |
download | poky-f0d5eb39c3ec939d4d42796ab53490d08c7609a5.tar.gz |
bitbake: lib: Drop now unneeded update_data calls
Now that the datastore works dynamically we don't need the update_data calls
so we can just remove them. They're not actually done anything at all for
a while.
(Bitbake rev: 2300beb50333bb620013b058a7309e7f2042101d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/data_smart.py')
-rw-r--r-- | bitbake/lib/bb/data_smart.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py index 0cd41683d9..4d56081b66 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/lib/bb/data_smart.py | |||
@@ -976,7 +976,6 @@ class DataSmart(MutableMapping): | |||
976 | data = {} | 976 | data = {} |
977 | d = self.createCopy() | 977 | d = self.createCopy() |
978 | bb.data.expandKeys(d) | 978 | bb.data.expandKeys(d) |
979 | bb.data.update_data(d) | ||
980 | 979 | ||
981 | config_whitelist = set((d.getVar("BB_HASHCONFIG_WHITELIST") or "").split()) | 980 | config_whitelist = set((d.getVar("BB_HASHCONFIG_WHITELIST") or "").split()) |
982 | keys = set(key for key in iter(d) if not key.startswith("__")) | 981 | keys = set(key for key in iter(d) if not key.startswith("__")) |