1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

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
+2
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"