From: Richard Purdie Date: Fri, 30 Sep 2016 16:43:25 +0000 (+0100) Subject: gcc-cross: Stop target recipes depending on SDK_SYS X-Git-Tag: 2016-10~163 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=2b5761350a074de2e1a6db19621945fba39089fc;p=openembedded-core.git gcc-cross: Stop target recipes depending on SDK_SYS gcc-cross target recipes should not depend on SDK_SYS but started to after recent changes. Remove the dependency to stop this (its caused by shared code in do_install). The compiler names contain SDK_SYS so changes would be correctly handled via other means. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/gcc/gcc-cross.inc b/meta/recipes-devtools/gcc/gcc-cross.inc index 87a8de9a85..cc465a2796 100644 --- a/meta/recipes-devtools/gcc/gcc-cross.inc +++ b/meta/recipes-devtools/gcc/gcc-cross.inc @@ -194,6 +194,9 @@ do_install () { ;; esac } +# This is reflected in the recipe name and target gcc shouldn't depend +# on SDK settings either +do_install[vardepsexclude] += "SDK_SYS" do_package[noexec] = "1" do_packagedata[noexec] = "1"