diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-09-17 00:56:15 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-09-17 22:25:23 +0100 |
commit | 5912ab1de17da4538223096f009dd5e8e31ab4d2 (patch) | |
tree | 57d64d4f1935724320ebcd4c6e14c62169e2b068 /meta/classes/native.bbclass | |
parent | 0768f596eb2c400a0082e1816e9f976d9615faa9 (diff) | |
download | openembedded-core-5912ab1de17da4538223096f009dd5e8e31ab4d2.tar.gz openembedded-core-5912ab1de17da4538223096f009dd5e8e31ab4d2.tar.bz2 openembedded-core-5912ab1de17da4538223096f009dd5e8e31ab4d2.zip |
native.bbclass: Use prefix_native variable
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes/native.bbclass')
-rw-r--r-- | meta/classes/native.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index 5da766426f..7064c951a3 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass @@ -51,8 +51,8 @@ export STRIP = "${HOST_PREFIX}strip" # Path prefixes base_prefix = "${STAGING_DIR_NATIVE}" -prefix = "${STAGING_DIR_NATIVE}/usr" -exec_prefix = "${STAGING_DIR_NATIVE}/usr" +prefix = "${STAGING_DIR_NATIVE}${prefix_native}" +exec_prefix = "${STAGING_DIR_NATIVE}${prefix_native}" # Since we actually install these into situ there is no staging prefix STAGING_DIR_HOST = "" |