[oe-commits] Richard Purdie : classextend: Fix crosssdk remapping for multilib

git at git.openembedded.org git at git.openembedded.org
Tue Jun 10 16:12:54 UTC 2014


Module: openembedded-core.git
Branch: daisy
Commit: d5a9290649fb493b6ac8b585d82ee9f02d138147
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=d5a9290649fb493b6ac8b585d82ee9f02d138147

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Fri May 30 13:31:47 2014 +0100

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)

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/lib/oe/classextend.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/lib/oe/classextend.py b/meta/lib/oe/classextend.py
index e2ae7e9..3309c57 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/"):



More information about the Openembedded-commits mailing list