* [PATCH] sstate: Ensure populate_lic sstate objects are cleaned
@ 2016-02-07 17:09 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2016-02-07 17:09 UTC (permalink / raw)
To: openembedded-core
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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index d606c02..7c7e024 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -124,6 +124,7 @@ def sstate_state_fromvars(d, task = None):
if task == "populate_lic":
d.setVar("SSTATE_PKGSPEC", "${SSTATE_SWSPEC}")
d.setVar("SSTATE_EXTRAPATH", "")
+ d.setVar('SSTATE_EXTRAPATHWILDCARD', "")
ss = sstate_init(task, d)
for i in range(len(inputs)):
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-02-07 17:09 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-07 17:09 [PATCH] sstate: Ensure populate_lic sstate objects are cleaned Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox