From b2c1e1fe4221862e0dbf5d08960f0d0228e47c72 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 21 Dec 2016 13:33:07 +0000 Subject: libgcc-common: Don't apply symlinks for nativesdk nativesdk-libgcc doesn't need a symlink into the target space and if we do this sstate installation of the recipe can fail depending on whether it races with the cross-canadian toolchains. Signed-off-by: Richard Purdie --- meta/recipes-devtools/gcc/libgcc-common.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-devtools/gcc/libgcc-common.inc b/meta/recipes-devtools/gcc/libgcc-common.inc index 74e9faa528..7a3b4106a8 100644 --- a/meta/recipes-devtools/gcc/libgcc-common.inc +++ b/meta/recipes-devtools/gcc/libgcc-common.inc @@ -144,6 +144,9 @@ BASETARGET_SYS = "${@get_original_os(d)}" addtask extra_symlinks after do_multilib_install before do_package do_populate_sysroot fakeroot python do_extra_symlinks() { + if bb.data.inherits_class('nativesdk', d): + return + targetsys = d.getVar('BASETARGET_SYS') if targetsys != d.getVar('TARGET_SYS'): -- cgit 1.2.3-korg