From 93e595d5c89ebacdb8d1e6fcfe6f58fe2d30de28 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 23 Sep 2011 08:57:31 +0100 Subject: 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 --- meta/classes/autotools.bbclass | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta/classes/autotools.bbclass') diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 8f65b709fd..f213c18bf5 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -31,6 +31,8 @@ export CONFIG_SITE = "${@siteinfo_get_files(d)}" acpaths = "default" EXTRA_AUTORECONF = "--exclude=autopoint" +export lt_cv_sys_lib_dlsearch_path_spec = "${libdir} ${base_libdir}" + def autotools_set_crosscompiling(d): if not bb.data.inherits_class('native', d): return " cross_compiling=yes" -- cgit 1.2.3-korg