diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-07-11 12:43:09 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-20 10:28:45 +0100 |
commit | 6ac1f9038dd8133b140699d156d616cb60cf0e17 (patch) | |
tree | 584b8089502742aad1c8a950cd20501e93d9ff03 /meta | |
parent | 5c545caef8cd21d124d2b30c8b52ec1dab417cc4 (diff) | |
download | poky-6ac1f9038dd8133b140699d156d616cb60cf0e17.tar.gz |
sstate.bbclass: make PV to depend on PV variable value
Currently PV is defined in meta/conf/bitbake.conf as a python
expression: "${@bb.parse.BBHandler.vars_from_file(d.getVar('FILE',
False),d)[1] or '1.0'}". As FILE is whitelisted it causes PV to
not depend on it. This causes sstate code to not detect that
PV changes when recipe filename changes.
Making PV to explicitly depend on PV variable value overrides default
behaviour. Instead of depending on python expression bitbake depends
on evaluated value of PV variable, which should fix the above
mentioned issue.
[YOCTO #9806]
(From OE-Core rev: 918646ca803d56004fb0ab7c21e86cc9cb14513d)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/sstate.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 621dc37d70..d706d75581 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -17,6 +17,9 @@ SSTATE_EXTRAPATH = "" | |||
17 | SSTATE_EXTRAPATHWILDCARD = "" | 17 | SSTATE_EXTRAPATHWILDCARD = "" |
18 | SSTATE_PATHSPEC = "${SSTATE_DIR}/${SSTATE_EXTRAPATHWILDCARD}*/${SSTATE_PKGSPEC}" | 18 | SSTATE_PATHSPEC = "${SSTATE_DIR}/${SSTATE_EXTRAPATHWILDCARD}*/${SSTATE_PKGSPEC}" |
19 | 19 | ||
20 | # explicitly make PV to depend on evaluated value of PV variable | ||
21 | PV[vardepvalue] = "${PV}" | ||
22 | |||
20 | # We don't want the sstate to depend on things like the distro string | 23 | # We don't want the sstate to depend on things like the distro string |
21 | # of the system, we let the sstate paths take care of this. | 24 | # of the system, we let the sstate paths take care of this. |
22 | SSTATE_EXTRAPATH[vardepvalue] = "" | 25 | SSTATE_EXTRAPATH[vardepvalue] = "" |