diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-12-19 10:13:09 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-26 11:19:54 +0000 |
commit | dc0784532170c1cb0af5d7c7630aa54a6907e7b2 (patch) | |
tree | c45d69e5b157ad38699af52c52c96adec740af3f /meta/lib | |
parent | b6eb396f2d0c4281664050c47f09cf5b91ac4fdc (diff) | |
download | poky-dc0784532170c1cb0af5d7c7630aa54a6907e7b2.tar.gz |
base.bbclass, classextend.py: Drop catering to gcc-initial
(From OE-Core rev: 5d0307fbefbc8e6667edfa93d527166059a30100)
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.py | 2 |
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): | |||
114 | def map_depends(self, dep): | 114 | def map_depends(self, dep): |
115 | if dep.startswith(self.extname): | 115 | if dep.startswith(self.extname): |
116 | return dep | 116 | return dep |
117 | if dep.endswith(("-gcc-initial", "-gcc", "-g++")): | 117 | if dep.endswith(("-gcc", "-g++")): |
118 | return dep + "-crosssdk" | 118 | return dep + "-crosssdk" |
119 | elif dep.endswith(("-native", "-native-runtime")) or ('nativesdk-' in dep) or ('-cross-' in dep) or ('-crosssdk-' in dep): | 119 | elif dep.endswith(("-native", "-native-runtime")) or ('nativesdk-' in dep) or ('-cross-' in dep) or ('-crosssdk-' in dep): |
120 | return dep | 120 | return dep |