summaryrefslogtreecommitdiffstats
path: root/meta/classes/insane.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-02-09 17:11:38 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-02-15 09:29:55 -0800
commitbfd0a39bdf13f6953810bf868022a871d2a20b6d (patch)
treee3c3fddc611afb3e70d6fae68e7cbdc42e1fe796 /meta/classes/insane.bbclass
parente758547db9048d4aa1c1415d6af8072f519fae24 (diff)
downloadpoky-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/classes/insane.bbclass')
-rw-r--r--meta/classes/insane.bbclass2
1 files changed, 0 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 3cf86c12c3..7fa0040857 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -910,7 +910,6 @@ def package_qa_check_rdepends(pkg, pkgdest, skip, taskdeps, packages, d):
910 if not "-dbg" in pkg and not "packagegroup-" in pkg and not "-image" in pkg: 910 if not "-dbg" in pkg and not "packagegroup-" in pkg and not "-image" in pkg:
911 localdata = bb.data.createCopy(d) 911 localdata = bb.data.createCopy(d)
912 localdata.setVar('OVERRIDES', pkg) 912 localdata.setVar('OVERRIDES', pkg)
913 bb.data.update_data(localdata)
914 913
915 # Now check the RDEPENDS 914 # Now check the RDEPENDS
916 rdepends = bb.utils.explode_deps(localdata.getVar('RDEPENDS') or "") 915 rdepends = bb.utils.explode_deps(localdata.getVar('RDEPENDS') or "")
@@ -1017,7 +1016,6 @@ def package_qa_check_deps(pkg, pkgdest, skip, d):
1017 1016
1018 localdata = bb.data.createCopy(d) 1017 localdata = bb.data.createCopy(d)
1019 localdata.setVar('OVERRIDES', pkg) 1018 localdata.setVar('OVERRIDES', pkg)
1020 bb.data.update_data(localdata)
1021 1019
1022 def check_valid_deps(var): 1020 def check_valid_deps(var):
1023 try: 1021 try: