summaryrefslogtreecommitdiffstats
path: root/meta/classes/native.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-16 14:52:29 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-17 10:19:59 +0000
commiteea86c4f0a960d0094571a78dc0cf9d46d162a22 (patch)
tree120611240a01d8e96043e2c8dd8cc0371200964d /meta/classes/native.bbclass
parentf2d73d6cbb0c1dec049e93124c6bbcdb52f8e757 (diff)
downloadpoky-eea86c4f0a960d0094571a78dc0cf9d46d162a22.tar.gz
native: Enable RDEPENDS handling
Native recipes don't currently honour their RDEPENDS. In the case of some python scripts this has started causing problems since whilst they're not needed at build time (DEPENDS), they are needed at runtime. We put off making this change due to circular dependency issues. I believe the three such problems in OE-Core are now fixed, as is the dependency loop identfication code in bitbake so its time to improve this situation. [YOCTO #10113] (From OE-Core rev: c62520b63284927e177831c351fafa4d2768cb1f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/native.bbclass')
-rw-r--r--meta/classes/native.bbclass3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass
index 30a30f924d..e9f6c740ab 100644
--- a/meta/classes/native.bbclass
+++ b/meta/classes/native.bbclass
@@ -192,3 +192,6 @@ do_packagedata[stamp-extra-info] = ""
192do_populate_sysroot[stamp-extra-info] = "" 192do_populate_sysroot[stamp-extra-info] = ""
193 193
194USE_NLS = "no" 194USE_NLS = "no"
195
196RECIPERDEPTASK = "do_populate_sysroot"
197do_populate_sysroot[rdeptask] = "${RECIPERDEPTASK}"