[oe-commits] Nitin A Kamble : cmake.bbclass: add ${base_libdir} to CMAKE_LIBRARY_PATH

git at git.openembedded.org git at git.openembedded.org
Mon Mar 12 17:49:35 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: f47ada62a3da879006e7cb27479dc9b72c56e923
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=f47ada62a3da879006e7cb27479dc9b72c56e923

Author: Nitin A Kamble <nitin.a.kamble at intel.com>
Date:   Mon Mar 12 09:28:10 2012 -0700

cmake.bbclass: add ${base_libdir} to CMAKE_LIBRARY_PATH

Some libraries like libcrypto.so are installed at base_libdir
instead of libdir. So add the base_libdir to CMAKE_LIBRARY_PATH
so that these libraries can be found correctly.

This resolves an issues with libzypp, which was not finding the
libcrypo library correctly in an x32 build.

Signed-off-by: Nitin A Kamble <nitin.a.kamble at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/cmake.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass
index 8aec759..dcd974a 100644
--- a/meta/classes/cmake.bbclass
+++ b/meta/classes/cmake.bbclass
@@ -59,7 +59,7 @@ set( CMAKE_INSTALL_RPATH ${OECMAKE_RPATH} )
 set( CMAKE_MODULE_PATH ${STAGING_DATADIR}/cmake/Modules/ )
 
 # add for non /usr/lib libdir, e.g. /usr/lib64
-set( CMAKE_LIBRARY_PATH ${libdir} )
+set( CMAKE_LIBRARY_PATH ${libdir} ${base_libdir})
 
 EOF
 }





More information about the Openembedded-commits mailing list