diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-20 13:55:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-22 09:05:39 +0000 |
commit | b523b2cc8023c47fce5b648280d5c05e939be36a (patch) | |
tree | a21b52497081b7de4a29ea92f56718446e258704 | |
parent | a49ee524a933b433ea9c2e2be1bbf24909fcde77 (diff) | |
download | poky-b523b2cc8023c47fce5b648280d5c05e939be36a.tar.gz |
meta-environment: Ensure all multilib dependencies are accounted for
Currently the recipe depends on the mulitlib libcs all being built
but the dependencies don't account for this. Fix the DEPENDS so
that the requires pieces are all built first rather than relying on
luck.
(From OE-Core rev: ef16a14725fe9bc44bff41e4632721ca611b1728)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/meta/meta-environment.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/meta-environment.bb b/meta/recipes-core/meta/meta-environment.bb index a250cc89fe..a2ed229100 100644 --- a/meta/recipes-core/meta/meta-environment.bb +++ b/meta/recipes-core/meta/meta-environment.bb | |||
@@ -19,6 +19,10 @@ SDKTARGETSYSROOT = "${SDKPATH}/sysroots/${REAL_MULTIMACH_TARGET_SYS}" | |||
19 | 19 | ||
20 | inherit cross-canadian | 20 | inherit cross-canadian |
21 | 21 | ||
22 | # Need to ensure we have the virtual mappings and site files for all multtilib | ||
23 | # variants | ||
24 | DEPENDS += "${@all_multilib_tune_values(d, 'TOOLCHAIN_NEED_CONFIGSITE_CACHE')}" | ||
25 | |||
22 | do_generate_content[cleandirs] = "${SDK_OUTPUT}" | 26 | do_generate_content[cleandirs] = "${SDK_OUTPUT}" |
23 | do_generate_content[dirs] = "${SDK_OUTPUT}/${SDKPATH}" | 27 | do_generate_content[dirs] = "${SDK_OUTPUT}/${SDKPATH}" |
24 | python do_generate_content() { | 28 | python do_generate_content() { |