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

git at git.openembedded.org git at git.openembedded.org
Fri May 30 22:52:28 UTC 2014


Module: openembedded-core.git
Branch: master-next
Commit: 82135f60f4a22ed2f6c1a0e51fd0d765ada772f0
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=82135f60f4a22ed2f6c1a0e51fd0d765ada772f0

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.

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 14d6f20..71c7759 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