diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-09 17:11:38 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-15 09:29:55 -0800 |
commit | bfd0a39bdf13f6953810bf868022a871d2a20b6d (patch) | |
tree | e3c3fddc611afb3e70d6fae68e7cbdc42e1fe796 /meta/recipes-core | |
parent | e758547db9048d4aa1c1415d6af8072f519fae24 (diff) | |
download | poky-bfd0a39bdf13f6953810bf868022a871d2a20b6d.tar.gz |
classes: 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.
(From OE-Core rev: 8de0c5d3bd01919e2bf0394f9c485936d6098cec)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/glibc/glibc-ld.inc | 1 | ||||
-rw-r--r-- | meta/recipes-core/meta/meta-environment.bb | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/meta/recipes-core/glibc/glibc-ld.inc b/meta/recipes-core/glibc/glibc-ld.inc index c26643707d..b89b70a293 100644 --- a/meta/recipes-core/glibc/glibc-ld.inc +++ b/meta/recipes-core/glibc/glibc-ld.inc | |||
@@ -37,7 +37,6 @@ def glibc_dl_info(d): | |||
37 | localdata = bb.data.createCopy(d) | 37 | localdata = bb.data.createCopy(d) |
38 | overrides = localdata.getVar("OVERRIDES", False) + ":virtclass-multilib-" + item | 38 | overrides = localdata.getVar("OVERRIDES", False) + ":virtclass-multilib-" + item |
39 | localdata.setVar("OVERRIDES", overrides) | 39 | localdata.setVar("OVERRIDES", overrides) |
40 | bb.data.update_data(localdata) | ||
41 | ld_append_if_tune_exists(localdata, infos, ld_info_all) | 40 | ld_append_if_tune_exists(localdata, infos, ld_info_all) |
42 | infos['ldconfig'] = ','.join(infos['ldconfig']) | 41 | infos['ldconfig'] = ','.join(infos['ldconfig']) |
43 | infos['lddrewrite'] = ' '.join(infos['lddrewrite']) | 42 | infos['lddrewrite'] = ' '.join(infos['lddrewrite']) |
diff --git a/meta/recipes-core/meta/meta-environment.bb b/meta/recipes-core/meta/meta-environment.bb index c7ac05d62a..29da121a3a 100644 --- a/meta/recipes-core/meta/meta-environment.bb +++ b/meta/recipes-core/meta/meta-environment.bb | |||
@@ -43,7 +43,6 @@ python do_generate_content() { | |||
43 | overrides = d.getVar("OVERRIDES", False) + ":virtclass-multilib-" + item | 43 | overrides = d.getVar("OVERRIDES", False) + ":virtclass-multilib-" + item |
44 | localdata.setVar("OVERRIDES", overrides) | 44 | localdata.setVar("OVERRIDES", overrides) |
45 | localdata.setVar("MLPREFIX", item + "-") | 45 | localdata.setVar("MLPREFIX", item + "-") |
46 | bb.data.update_data(localdata) | ||
47 | bb.build.exec_func("create_sdk_files", localdata) | 46 | bb.build.exec_func("create_sdk_files", localdata) |
48 | } | 47 | } |
49 | addtask generate_content before do_install after do_compile | 48 | addtask generate_content before do_install after do_compile |