diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-30 13:31:47 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-10 17:12:18 +0100 |
commit | c166a5add3fb3b7739385189392e1079f317adf2 (patch) | |
tree | f6cd349379c005a8fdf6a5fa3cf64fe6c823158c /meta/lib/oe | |
parent | 303d17ac3c3db40f4db9647317f130f807372629 (diff) | |
download | poky-c166a5add3fb3b7739385189392e1079f317adf2.tar.gz |
classextend: Fix crosssdk remapping for multilib
Multilib builds only require one crosssdk toolchain. We therefore shouldn't
be remapping crosssdk names. This resolves build failures looking for
weird multilib crosssdk toolchains.
(From OE-Core rev: aa8b93e2db06866529d20939452f81fb9e18aaab)
(From OE-Core rev: d5a9290649fb493b6ac8b585d82ee9f02d138147)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/classextend.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oe/classextend.py b/meta/lib/oe/classextend.py index e2ae7e9f94..3309c57ba8 100644 --- a/meta/lib/oe/classextend.py +++ b/meta/lib/oe/classextend.py | |||
@@ -9,6 +9,8 @@ class ClassExtender(object): | |||
9 | return name | 9 | return name |
10 | if name.startswith("rtld"): | 10 | if name.startswith("rtld"): |
11 | return name | 11 | return name |
12 | if name.endswith("-crosssdk"): | ||
13 | return name | ||
12 | if name.endswith("-" + self.extname): | 14 | if name.endswith("-" + self.extname): |
13 | name = name.replace("-" + self.extname, "") | 15 | name = name.replace("-" + self.extname, "") |
14 | if name.startswith("virtual/"): | 16 | if name.startswith("virtual/"): |