diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-06 23:13:54 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-07 11:35:43 +0100 |
commit | d7babed94f56ceb2f9218e6e5d28b9f8d8d04afa (patch) | |
tree | 24d62be7536708765ae6602b442a37ea33bf25c7 /meta/classes/native.bbclass | |
parent | 439792ea5fbf2ec6179f0e29e776039c05903197 (diff) | |
download | poky-d7babed94f56ceb2f9218e6e5d28b9f8d8d04afa.tar.gz |
native.bbclass: Ensure native recipes have a deterministic baselib value
Changes to baselib by specific machine configuration were resulting
in sstate cache invalidation, particularly in multilib configurations.
This patch ensures this doesn't happen and native sstate cache files
are reusable.
(From OE-Core rev: d0915fb0a2cc80ad45b3fd526d3b29a91d99572c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/native.bbclass')
-rw-r--r-- | meta/classes/native.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index 5e45aed37b..ba8b0bf25e 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass | |||
@@ -69,6 +69,8 @@ exec_prefix = "${STAGING_DIR_NATIVE}${prefix_native}" | |||
69 | 69 | ||
70 | libdir = "${STAGING_DIR_NATIVE}${libdir_native}" | 70 | libdir = "${STAGING_DIR_NATIVE}${libdir_native}" |
71 | 71 | ||
72 | baselib = "lib" | ||
73 | |||
72 | # Libtool's default paths are correct for the native machine | 74 | # Libtool's default paths are correct for the native machine |
73 | lt_cv_sys_lib_dlsearch_path_spec[unexport] = "1" | 75 | lt_cv_sys_lib_dlsearch_path_spec[unexport] = "1" |
74 | 76 | ||