diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-30 17:43:25 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-01 21:45:57 +0100 |
commit | 2ba0fbcdf2bb9c8edb252fc815a4bd146fd766b7 (patch) | |
tree | 6fcc6674230af0705ab2dfb9a39a5439c8035943 | |
parent | 6f03af9ae34a7e6383038a8a21488efc48a603d3 (diff) | |
download | poky-2ba0fbcdf2bb9c8edb252fc815a4bd146fd766b7.tar.gz |
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>
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross.inc | 3 |
1 files changed, 3 insertions, 0 deletions
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 () { | |||
194 | ;; | 194 | ;; |
195 | esac | 195 | esac |
196 | } | 196 | } |
197 | # This is reflected in the recipe name and target gcc shouldn't depend | ||
198 | # on SDK settings either | ||
199 | do_install[vardepsexclude] += "SDK_SYS" | ||
197 | 200 | ||
198 | do_package[noexec] = "1" | 201 | do_package[noexec] = "1" |
199 | do_packagedata[noexec] = "1" | 202 | do_packagedata[noexec] = "1" |