From: Richard Purdie Date: Sat, 19 Mar 2011 01:16:05 +0000 (+0000) Subject: sstate: Ensure a clean removes setscene stamps as well as the main task stamps X-Git-Tag: 2011-1~1988 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d07fe8aef537a8bcb96a802e18d7c980ff4c5ce2;p=openembedded-core.git sstate: Ensure a clean removes setscene stamps as well as the main task stamps Signed-off-by: Richard Purdie --- diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 47d05689b6..d57c183004 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -241,7 +241,9 @@ def sstate_clean(ss, d): stfile = d.getVar("STAMP", True) + ".do_" + ss['task'] oe.path.remove(stfile) + oe.path.remove(stfile + "_setscene") oe.path.remove(stfile + ".*") + oe.path.remove(stfile + "_setscene" + ".*") CLEANFUNCS += "sstate_cleanall"