diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-07 17:09:41 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 16:06:24 +0000 |
commit | ae2f3a309f88147aaaae0d22c1cd145abdbe48e8 (patch) | |
tree | e5bf180de3f6dd7fdd50d785645f3ae7faa57406 /meta/classes/sstate.bbclass | |
parent | 26f26e5cbdc42423d822213580556a8457c7418d (diff) | |
download | poky-ae2f3a309f88147aaaae0d22c1cd145abdbe48e8.tar.gz |
sstate: Ensure populate_lic sstate objects are cleaned
do_cleansstate wasn't cleaning do_populate_lic sstate objects in the
native/cross case since the wildcard path entry wasn't being cleared
at the same time as the path extra prefix. Fix by clearing it at the
same time.
(From OE-Core rev: af72c507f5e20acf64b7431cee989af9908ef199)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r-- | meta/classes/sstate.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 024b801717..997d55baab 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -124,6 +124,7 @@ def sstate_state_fromvars(d, task = None): | |||
124 | if task == "populate_lic": | 124 | if task == "populate_lic": |
125 | d.setVar("SSTATE_PKGSPEC", "${SSTATE_SWSPEC}") | 125 | d.setVar("SSTATE_PKGSPEC", "${SSTATE_SWSPEC}") |
126 | d.setVar("SSTATE_EXTRAPATH", "") | 126 | d.setVar("SSTATE_EXTRAPATH", "") |
127 | d.setVar('SSTATE_EXTRAPATHWILDCARD', "") | ||
127 | 128 | ||
128 | ss = sstate_init(task, d) | 129 | ss = sstate_init(task, d) |
129 | for i in range(len(inputs)): | 130 | for i in range(len(inputs)): |