1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

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.

(From OE-Core rev: 2b5761350a074de2e1a6db19621945fba39089fc)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2016-09-30 17:43:25 +01:00
parent 6f03af9ae3
commit 2ba0fbcdf2
+3
View File
@@ -194,6 +194,9 @@ do_install () {
;; ;;
esac 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_package[noexec] = "1"
do_packagedata[noexec] = "1" do_packagedata[noexec] = "1"