diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-24 22:09:38 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-25 15:33:58 +0100 |
commit | aee3b5330d263e224851ed1c5c3562ec04e0a2f7 (patch) | |
tree | 0b22f42972f210181156e90d92fa8551632f8ef1 /meta/classes | |
parent | d8024434d4c9b6a3400ac494fa3c32d0827e42d3 (diff) | |
download | poky-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')
-rw-r--r-- | meta/classes/cross-canadian.bbclass | 7 |
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. |
87 | target_libdir := "${libdir}" | 87 | target_base_prefix := "${base_prefix}" |
88 | target_includedir := "${includedir}" | ||
89 | target_base_libdir := "${base_libdir}" | ||
90 | target_prefix := "${prefix}" | 88 | target_prefix := "${prefix}" |
91 | target_exec_prefix := "${exec_prefix}" | 89 | target_exec_prefix := "${exec_prefix}" |
90 | target_base_libdir = "${target_base_prefix}/${baselib}" | ||
91 | target_libdir = "${target_exec_prefix}/${baselib}" | ||
92 | target_includedir := "${includedir}" | ||
92 | 93 | ||
93 | # Change to place files in SDKPATH | 94 | # Change to place files in SDKPATH |
94 | base_prefix = "${SDKPATHNATIVE}" | 95 | base_prefix = "${SDKPATHNATIVE}" |