[oe-commits] org.oe.dev native.bbclass: Change prefix so its within the build-arch directory, hence moving on step closer to sysroot. Nothing much uses the prefix path from native.bbclass apart from qemu which this change fixes a problem with

rpurdie commit openembedded-commits at lists.openembedded.org
Mon Jan 28 23:25:14 UTC 2008


native.bbclass: Change prefix so its within the build-arch directory, hence moving on step closer to sysroot. Nothing much uses the prefix path from native.bbclass apart from qemu which this change fixes a problem with

Author: rpurdie at openembedded.org
Branch: org.openembedded.dev
Revision: 674ed77bc99d99930d3aa70880a8f6ce6f63de00
ViewMTN: http://monotone.openembedded.org/revision/info/674ed77bc99d99930d3aa70880a8f6ce6f63de00
Files:
1
classes/native.bbclass
Diffs:

#
# mt diff -r8e7f10e1b07e1925f6b58430087d8881060e3bac -r674ed77bc99d99930d3aa70880a8f6ce6f63de00
#
# 
# 
# patch "classes/native.bbclass"
#  from [2fa46cce43d3c753145a63a3deae182b2c88ed8a]
#    to [242e5b275af07bc3c8f5d3d1a6003d852ba72ec6]
# 
============================================================
--- classes/native.bbclass	2fa46cce43d3c753145a63a3deae182b2c88ed8a
+++ classes/native.bbclass	242e5b275af07bc3c8f5d3d1a6003d852ba72ec6
@@ -49,9 +49,9 @@ export STRIP = "${HOST_PREFIX}strip"
 
 
 # Path prefixes
-base_prefix = "${exec_prefix}"
-prefix = "${STAGING_DIR}"
-exec_prefix = "${STAGING_DIR}/${BUILD_ARCH}-${BUILD_OS}"
+base_prefix = "${STAGING_DIR}/${BUILD_ARCH}-${BUILD_OS}"
+prefix = "${base_prefix}"
+exec_prefix = "${base_prefix}"
 
 # Base paths
 base_bindir = "${base_prefix}/bin"






More information about the Openembedded-commits mailing list