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 6243230675
commit 273cfeccb7
1 changed files with 2 additions and 0 deletions

View File

@ -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"