diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2008-01-28 23:00:13 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2008-01-28 23:00:13 +0000 |
commit | f45fd4d5ba65cf4eb6dd795de6953a5ff3dc9dbc (patch) | |
tree | d3467b5bffbadde23a55e227ae4ed3146d4aebdf /classes/native.bbclass | |
parent | 591b1261f4ebfa9fcb7bea31845b6bb8843c913f (diff) |
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.bbclass | 6 |
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" |