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: 2016-4~1024 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=af72c507f5e20acf64b7431cee989af9908ef199;p=openembedded-core.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 024b801717..997d55baab 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)):