[oe-commits] Yu Ke : native.bbclass: generate libdir from libdir_native

git version control git at git.openembedded.org
Tue Jul 12 14:00:22 UTC 2011


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

Author: Yu Ke <ke.yu at intel.com>
Date:   Mon Jul 11 15:23:14 2011 +0800

native.bbclass: generate libdir from libdir_native

currently, the libdir in native.bbclass is inherited from target libdir
defined in bitbake.conf. This is not correct in concept, instead, it
should be inherited from libdir_native. Current code works because both
the target libdir and libdir_native are the same value "/usr/lib".
But if libdir changes (e.g. to /usr/lib64), then build will break.

This patch make libdir generated from libdir_native to fix this issue.

Signed-off-by: Yu Ke <ke.yu at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 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 11ec6dc..1e8de95 100644
--- a/meta/classes/native.bbclass
+++ b/meta/classes/native.bbclass
@@ -67,6 +67,8 @@ base_prefix = "${STAGING_DIR_NATIVE}"
 prefix = "${STAGING_DIR_NATIVE}${prefix_native}"
 exec_prefix = "${STAGING_DIR_NATIVE}${prefix_native}"
 
+libdir = "${STAGING_DIR_NATIVE}${libdir_native}"
+
 NATIVE_PACKAGE_PATH_SUFFIX = ""
 bindir .= "${NATIVE_PACKAGE_PATH_SUFFIX}"
 libdir .= "${NATIVE_PACKAGE_PATH_SUFFIX}"





More information about the Openembedded-commits mailing list