]> code.ossystems Code Review - openembedded-core.git/commitdiff
sstate: Ensure a clean removes setscene stamps as well as the main task stamps
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 19 Mar 2011 01:16:05 +0000 (01:16 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 19 Mar 2011 01:16:05 +0000 (01:16 +0000)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/sstate.bbclass

index 47d05689b6a88d3b33f78f47b3061cdd217c7a82..d57c183004a56010a7f3f2af438dcb57075a9a2c 100644 (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"