sstate: Ensure a clean removes setscene stamps as well as the main task stamps

(From OE-Core rev: d07fe8aef537a8bcb96a802e18d7c980ff4c5ce2)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-03-19 01:16:05 +00:00
parent 2176606ff7
commit 7b8b77444d

View File

@ -243,7 +243,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"