aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-30 13:31:47 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-06-01 14:28:35 +0100
commitaa8b93e2db06866529d20939452f81fb9e18aaab (patch)
tree4ab140d975e1bdaa9c563cc50598475325e8efe4
parent237b9700d449de03a3f5dc524c15709f46941cf9 (diff)
downloadopenembedded-core-contrib-aa8b93e2db06866529d20939452f81fb9e18aaab.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. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oe/classextend.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oe/classextend.py b/meta/lib/oe/classextend.py
index 14d6f20a88..71c7759e91 100644
--- a/meta/lib/oe/classextend.py
+++ b/meta/lib/oe/classextend.py
@@ -9,6 +9,8 @@ class ClassExtender(object):
return name
if name.startswith("rtld"):
return name
+ if name.endswith("-crosssdk"):
+ return name
if name.endswith("-" + self.extname):
name = name.replace("-" + self.extname, "")
if name.startswith("virtual/"):