diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2014-11-10 20:09:29 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-12 15:38:33 +0000 |
commit | bb213d8e60746d61d80505487d5f14a4eb45231b (patch) | |
tree | 3c51dad8b84dbd9237ad12a9b3ac0b0ce445354f /meta/recipes-core | |
parent | 8c240ad2472d8a7a5ea8a735fda3c1210c664c0d (diff) | |
download | poky-bb213d8e60746d61d80505487d5f14a4eb45231b.tar.gz |
meta-environment: Fix config-site with a multilib config
[YOCTO #6951]
The TOOLCHAIN_CONFIGSITE_SYSROOTCACHE value was defaulting to the nativesdk
path and not the associated target path. Set the value in toolchain-scripts
to the target path.
Be sure to set the MLPREFIX within the meta-environment script as multilibs
are processed.
Update the config_site file name to use -BPN- not PN. Otherwise the
environment processing can't find the correct filename.
(From OE-Core rev: 1f05aaa4944ddac6c2b3ba440effdf1eaf732656)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/meta-environment.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/meta-environment.bb b/meta/recipes-core/meta/meta-environment.bb index 9d8bcb71de..bb208a39aa 100644 --- a/meta/recipes-core/meta/meta-environment.bb +++ b/meta/recipes-core/meta/meta-environment.bb | |||
@@ -42,6 +42,7 @@ python do_generate_content() { | |||
42 | # Load overrides from 'd' to avoid having to reset the value... | 42 | # Load overrides from 'd' to avoid having to reset the value... |
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 | bb.data.update_data(localdata) | 46 | bb.data.update_data(localdata) |
46 | bb.build.exec_func("create_sdk_files", localdata) | 47 | bb.build.exec_func("create_sdk_files", localdata) |
47 | } | 48 | } |