diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-29 17:45:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-30 14:10:33 +0100 |
commit | 78a2c81427eeab641974e11d765f76e642abf2d4 (patch) | |
tree | df804264a09d4497410e80570187e2bdc0c54853 /meta/classes | |
parent | 78b2f5a72e0f33e551307a1d4c1f99e81aea4cac (diff) | |
download | poky-78a2c81427eeab641974e11d765f76e642abf2d4.tar.gz |
staging: Exclude MULTI_PROVIDER_WHISTLIST from do_populate_sysroot
If you switch between multilib and non-multilib builds, pretty much
everything rebuilds due to the use of MULTI_PROVIDER_WHITELIST
in do_populate_sysroot. It doesn't need to do this so exclude
that variable for checksum purposes.
(From OE-Core rev: 7f3a44ff30d07083ee8c4e2b7ac91dc6a9c8857b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/staging.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index 7c43e7618d..57b2743196 100644 --- a/meta/classes/staging.bbclass +++ b/meta/classes/staging.bbclass | |||
@@ -106,6 +106,7 @@ python do_populate_sysroot () { | |||
106 | } | 106 | } |
107 | 107 | ||
108 | do_populate_sysroot[vardeps] += "${SYSROOT_PREPROCESS_FUNCS}" | 108 | do_populate_sysroot[vardeps] += "${SYSROOT_PREPROCESS_FUNCS}" |
109 | do_populate_sysroot[vardepsexclude] += "MULTI_PROVIDER_WHITELIST" | ||
109 | 110 | ||
110 | SSTATETASKS += "do_populate_sysroot" | 111 | SSTATETASKS += "do_populate_sysroot" |
111 | do_populate_sysroot[cleandirs] = "${SYSROOT_DESTDIR}" | 112 | do_populate_sysroot[cleandirs] = "${SYSROOT_DESTDIR}" |