From: Richard Purdie Date: Sun, 7 Feb 2016 17:09:41 +0000 (+0000) Subject: sstate: Ensure populate_lic sstate objects are cleaned X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~27134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af72c507f5e20acf64b7431cee989af9908ef199;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Richard Purdie --- diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 024b8017174..997d55baabf 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)):