aboutsummaryrefslogtreecommitdiffstats
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-19 23:03:52 +0000
commit65a20a34af9e418b578d310827d76bf6106f1529 (patch)
treee2e09a6260fc8a3b55af8586cd0d47f70d411295 /meta/lib
parent06aafff28d6c2ff3aab434ff7b3d2d947721cb5b (diff)
downloadopenembedded-core-contrib-65a20a34af9e418b578d310827d76bf6106f1529.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