summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2018-12-19 10:13:09 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-12-26 11:19:47 +0000
commit5d0307fbefbc8e6667edfa93d527166059a30100 (patch)
tree951b9d635e6872b4ef9e8319f540a3c5dafcc4be /meta/lib
parent5b2fd1c72407d3024512982685d8b1227c2631af (diff)
downloadopenembedded-core-contrib-5d0307fbefbc8e6667edfa93d527166059a30100.tar.gz
base.bbclass, classextend.py: Drop catering to gcc-initial
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/classextend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/classextend.py b/meta/lib/oe/classextend.py
index d2eeaf0e5c..662707b859 100644
--- a/meta/lib/oe/classextend.py
+++ b/meta/lib/oe/classextend.py
@@ -114,7 +114,7 @@ class NativesdkClassExtender(ClassExtender):
def map_depends(self, dep):
if dep.startswith(self.extname):
return dep
- if dep.endswith(("-gcc-initial", "-gcc", "-g++")):
+ if dep.endswith(("-gcc", "-g++")):
return dep + "-crosssdk"
elif dep.endswith(("-native", "-native-runtime")) or ('nativesdk-' in dep) or ('-cross-' in dep) or ('-crosssdk-' in dep):
return dep