diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-23 08:57:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-26 17:55:05 +0100 |
commit | 93e595d5c89ebacdb8d1e6fcfe6f58fe2d30de28 (patch) | |
tree | 0fa65fd592193139257e09ffd89f02445e2c76e3 /meta/classes/native.bbclass | |
parent | 33a1a05ef988c69f8ff8e38c6723922082e5d1aa (diff) | |
download | openembedded-core-93e595d5c89ebacdb8d1e6fcfe6f58fe2d30de28.tar.gz openembedded-core-93e595d5c89ebacdb8d1e6fcfe6f58fe2d30de28.tar.bz2 openembedded-core-93e595d5c89ebacdb8d1e6fcfe6f58fe2d30de28.tar.xz openembedded-core-93e595d5c89ebacdb8d1e6fcfe6f58fe2d30de28.zip |
autotools.bbclass: Set the dynamic linker search path for libtool correctly
libtool obtains the search path from /etc/ld.so.conf and hardcodes /usr/lib
and /lib. This results in host contamination and variable sets of RPATH
values ending up in binaries.
By exporting the correct values for all autotools recipes we avoid this.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/native.bbclass')
-rw-r--r-- | meta/classes/native.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index 9a41f19dc..5e45aed37 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass @@ -69,6 +69,9 @@ exec_prefix = "${STAGING_DIR_NATIVE}${prefix_native}" libdir = "${STAGING_DIR_NATIVE}${libdir_native}" +# Libtool's default paths are correct for the native machine +lt_cv_sys_lib_dlsearch_path_spec[unexport] = "1" + NATIVE_PACKAGE_PATH_SUFFIX = "" bindir .= "${NATIVE_PACKAGE_PATH_SUFFIX}" libdir .= "${NATIVE_PACKAGE_PATH_SUFFIX}" |