mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
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>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user