summaryrefslogtreecommitdiffstats
path: root/meta/classes/cross-canadian.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-24 22:09:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-25 15:33:58 +0100
commitaee3b5330d263e224851ed1c5c3562ec04e0a2f7 (patch)
tree0b22f42972f210181156e90d92fa8551632f8ef1 /meta/classes/cross-canadian.bbclass
parentd8024434d4c9b6a3400ac494fa3c32d0827e42d3 (diff)
downloadpoky-aee3b5330d263e224851ed1c5c3562ec04e0a2f7.tar.gz
cross-canadian: Copy target_ definitions from cross.bbclass
A while back we fixed the cross definitions to work better in multilib configurations, apply the same fixes to cross-candian.bbclass (From OE-Core rev: 4544b7f1d0abd1b1efd74da430f1ddedf3fdbd1d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/cross-canadian.bbclass')
-rw-r--r--meta/classes/cross-canadian.bbclass7
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass
index e5361189e2..6da43fe445 100644
--- a/meta/classes/cross-canadian.bbclass
+++ b/meta/classes/cross-canadian.bbclass
@@ -84,11 +84,12 @@ EXTRANATIVEPATH += "chrpath-native"
84# Path mangling needed by the cross packaging 84# Path mangling needed by the cross packaging
85# Note that we use := here to ensure that libdir and includedir are 85# Note that we use := here to ensure that libdir and includedir are
86# target paths. 86# target paths.
87target_libdir := "${libdir}" 87target_base_prefix := "${base_prefix}"
88target_includedir := "${includedir}"
89target_base_libdir := "${base_libdir}"
90target_prefix := "${prefix}" 88target_prefix := "${prefix}"
91target_exec_prefix := "${exec_prefix}" 89target_exec_prefix := "${exec_prefix}"
90target_base_libdir = "${target_base_prefix}/${baselib}"
91target_libdir = "${target_exec_prefix}/${baselib}"
92target_includedir := "${includedir}"
92 93
93# Change to place files in SDKPATH 94# Change to place files in SDKPATH
94base_prefix = "${SDKPATHNATIVE}" 95base_prefix = "${SDKPATHNATIVE}"