aboutsummaryrefslogtreecommitdiffstats
path: root/classes/native.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@rpsys.net>2008-01-28 23:00:13 +0000
committerRichard Purdie <rpurdie@rpsys.net>2008-01-28 23:00:13 +0000
commitf45fd4d5ba65cf4eb6dd795de6953a5ff3dc9dbc (patch)
treed3467b5bffbadde23a55e227ae4ed3146d4aebdf /classes/native.bbclass
parent591b1261f4ebfa9fcb7bea31845b6bb8843c913f (diff)
downloadopenembedded-f45fd4d5ba65cf4eb6dd795de6953a5ff3dc9dbc.tar.gz
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
Diffstat (limited to 'classes/native.bbclass')
-rw-r--r--classes/native.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/native.bbclass b/classes/native.bbclass
index d51c675909..934303cc0c 100644
--- a/classes/native.bbclass
+++ b/classes/native.bbclass
@@ -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"