diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-30 14:43:37 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-01 07:40:23 +0100 |
commit | dae7c45fac1d877203f173842d43abc4883b808b (patch) | |
tree | de71d7f3cfaa3e878041b12d93565c1cc9ef4e59 /meta | |
parent | b460afb12bb16a4b56d800c953c5f5c7da0bff84 (diff) | |
download | openembedded-core-dae7c45fac1d877203f173842d43abc4883b808b.tar.gz openembedded-core-dae7c45fac1d877203f173842d43abc4883b808b.tar.bz2 openembedded-core-dae7c45fac1d877203f173842d43abc4883b808b.zip |
gcc-multilib-config: Ensure SDK_ARCH doesn't change target sigs
Changing SDKMACHINE (which changes SDK_ARCH) shouldn't cause
target task signatures to change. Exclude the dependency
on SDK_ARCH for this reason. It only affects nativesdk builds
and those already account for SDK_ARCH in the build WORKDIR paths.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-multilib-config.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-multilib-config.inc b/meta/recipes-devtools/gcc/gcc-multilib-config.inc index 4a1010ccf9..1c0a45a365 100644 --- a/meta/recipes-devtools/gcc/gcc-multilib-config.inc +++ b/meta/recipes-devtools/gcc/gcc-multilib-config.inc @@ -223,5 +223,6 @@ python gcc_multilib_setup() { } gcc_multilib_setup[cleandirs] = "${B}/gcc/config" +gcc_multilib_setup[vardepsexclude] = "SDK_ARCH" EXTRACONFFUNCS += "gcc_multilib_setup" |