diff options
author | Petter Mabäcker <petter@technux.se> | 2017-05-15 06:17:11 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-23 11:44:13 +0100 |
commit | b3c3f9aaa9b15ea998d6d33e1b520e85862ab7a1 (patch) | |
tree | 1fbff0e0958c0e1c9e89bca3f2cecfc2739c958c /meta/classes | |
parent | 7a19bbcf81ada2c9fbb2b65ac638781ad8f15740 (diff) | |
download | poky-b3c3f9aaa9b15ea998d6d33e1b520e85862ab7a1.tar.gz |
multilib.bbclass: fix faulty redefinition of STAGING_KERNEL_DIR
Due to the problem fixed in
'56c677a multilib: Move redefinition of STAGING_DIR_KERNEL'
STAGING_KERNEL_DIR must be redefined for lib32 in multilib.bbclass.
However this redefinition expanded STAGING_KERNEL_DIR to an absolute
path. This unconsciously added the TMPDIR path in the sstate object,
causing packages depended on STAGING_KERNEL_DIR being rebuild if the
TMPDIR was changed.
Solve this by forcing the unexpanded TMPDIR variable to remain in the
beginning of STAGING_DIR_KERNEL (as default). Since TMPDIR is included in
BB_HASHBASE_WHITELIST, the sstate object will not be depended on the
expanded path anymore.
(From OE-Core rev: 30238852a53d221ebcaa5b2dc30ea9617c2715a1)
Signed-off-by: Petter Mabäcker <petter@technux.se>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/multilib.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass index ab04597f93..816f54e7f5 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass | |||
@@ -4,7 +4,9 @@ python multilib_virtclass_handler () { | |||
4 | if cls != "multilib" or not variant: | 4 | if cls != "multilib" or not variant: |
5 | return | 5 | return |
6 | 6 | ||
7 | e.data.setVar('STAGING_KERNEL_DIR', e.data.getVar('STAGING_KERNEL_DIR')) | 7 | localdata = bb.data.createCopy(e.data) |
8 | localdata.delVar('TMPDIR') | ||
9 | e.data.setVar('STAGING_KERNEL_DIR', localdata.getVar('STAGING_KERNEL_DIR')) | ||
8 | 10 | ||
9 | # There should only be one kernel in multilib configs | 11 | # There should only be one kernel in multilib configs |
10 | # We also skip multilib setup for module packages. | 12 | # We also skip multilib setup for module packages. |