diff options
author | Khem Raj <raj.khem@gmail.com> | 2010-07-21 10:42:38 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2010-07-22 10:09:29 -0700 |
commit | 526394a2f3cd44f09612687cad46a19e9af88402 (patch) | |
tree | 1e83630fe93d1f272897948e249c4b1c5edb2ad7 /classes/cross.bbclass | |
parent | aceff7eb3609c93f28daf4a7dd9851dec5e44268 (diff) |
classes,bitbake.conf: Remove CROSS_DIR, install cross-packages into native sysroot
* Update references to CROSS_DIR in classes and bitbake.conf.
* This patch is based on Joshua Lock's work in poky.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Tom Rini <tom_rini@mentor.com>
Acked-by: Richard Purdie <rpurdie@rpsys.net>
Ackef-by: Chris Larson <clarson@kergoth.com>
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Koen Kooi <koen@openembedded.org>
Diffstat (limited to 'classes/cross.bbclass')
-rw-r--r-- | classes/cross.bbclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/cross.bbclass b/classes/cross.bbclass index 4cf2b4cfe2..75b2abe244 100644 --- a/classes/cross.bbclass +++ b/classes/cross.bbclass @@ -1,5 +1,5 @@ # Disabled for now since the relocation paths are too long -#inherit relocatable +inherit relocatable # Cross packages are built indirectly via dependency, # no need for them to be a direct target of 'world' @@ -44,9 +44,9 @@ target_base_libdir := "${base_libdir}" target_prefix := "${prefix}" # Overrides for paths -prefix = "${CROSS_DIR}" -base_prefix = "${prefix}" -exec_prefix = "${prefix}" +prefix = "${STAGING_DIR_NATIVE}${prefix_native}" +base_prefix = "${STAGING_DIR_NATIVE}" +exec_prefix = "${STAGING_DIR_NATIVE}${prefix_native}" base_sbindir = "${base_prefix}/bin" sbindir = "${exec_prefix}/bin" |