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:41 -0800 |
commit | 8de0c5d3bd01919e2bf0394f9c485936d6098cec (patch) | |
tree | b0c04737cc79f4f0da8d93082ed5a016726dfa86 /meta/classes/insane.bbclass | |
parent | d1109378d730c5cf50240c4d1a468e3aef5208ea (diff) | |
download | openembedded-core-8de0c5d3bd01919e2bf0394f9c485936d6098cec.tar.gz openembedded-core-8de0c5d3bd01919e2bf0394f9c485936d6098cec.tar.bz2 openembedded-core-8de0c5d3bd01919e2bf0394f9c485936d6098cec.zip |
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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r-- | meta/classes/insane.bbclass | 2 |
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): if not "-dbg" in pkg and not "packagegroup-" in pkg and not "-image" in pkg: localdata = bb.data.createCopy(d) localdata.setVar('OVERRIDES', pkg) - bb.data.update_data(localdata) # Now check the RDEPENDS rdepends = bb.utils.explode_deps(localdata.getVar('RDEPENDS') or "") @@ -1017,7 +1016,6 @@ def package_qa_check_deps(pkg, pkgdest, skip, d): localdata = bb.data.createCopy(d) localdata.setVar('OVERRIDES', pkg) - bb.data.update_data(localdata) def check_valid_deps(var): try: |