From: Richard Purdie Date: Fri, 8 Oct 2010 14:20:42 +0000 (+0100) Subject: meta-toolchain: Fix libGL.so not found issues X-Git-Tag: 2011-1~4324 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=ad042da70348e9f301a25b855248e8fbce495ab8;p=openembedded-core.git meta-toolchain: Fix libGL.so not found issues Fix libGL.so not found issues by making sure ld.so.cache from the host system is used to locate libraries. Also, fix a /usr/ reference that should be /var to keep the installation tarball clean. [BUGID #228] Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-tbd/meta/meta-toolchain.bb b/meta/recipes-tbd/meta/meta-toolchain.bb index 8054b5f7b8..f976457bc5 100644 --- a/meta/recipes-tbd/meta/meta-toolchain.bb +++ b/meta/recipes-tbd/meta/meta-toolchain.bb @@ -47,7 +47,7 @@ do_populate_sdk() { install -d ${SDK_OUTPUT}/${SDKPATHNATIVE}${localstatedir_nativesdk}/lib/opkg mv ${SDK_OUTPUT}/var/lib/opkg/* ${SDK_OUTPUT}/${SDKPATHNATIVE}${localstatedir_nativesdk}/lib/opkg/ - rm -Rf ${SDK_OUTPUT}/usr + rm -Rf ${SDK_OUTPUT}/var # Don't ship any libGL in the SDK rm -rf ${SDK_OUTPUT}/${SDKPATHNATIVE}${libdir_nativesdk}/libGL* @@ -72,6 +72,9 @@ do_populate_sdk() { #rm -f ${SDK_OUTPUT}/${SDKPATHNATIVE}/lib/*.la rm -f ${SDK_OUTPUT}/${SDKPATHNATIVE}${libdir_nativesdk}/*.la + # Link the ld.so.cache file into the hosts filesystem + ln -s /etc/ld.so.cache ${SDKPATHNATIVE}/etc/ld.so.cache + # Setup site file for external use siteconfig=${SDK_OUTPUT}/${SDKPATH}/site-config-${MULTIMACH_TARGET_SYS} touch $siteconfig