summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-19 01:16:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-19 01:33:04 +0000
commit7b8b77444dff12c79b918fc967beb47bebb40d65 (patch)
treeac063b2bcc49cdfcd245baa3ade5dbe598e31b5e /meta/classes
parent2176606ff7473c00c592e140d406105c06dc94e5 (diff)
downloadpoky-7b8b77444dff12c79b918fc967beb47bebb40d65.tar.gz
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>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/sstate.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index ba0556f960..c4f6733a28 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -243,7 +243,9 @@ def sstate_clean(ss, d):
243 243
244 stfile = d.getVar("STAMP", True) + ".do_" + ss['task'] 244 stfile = d.getVar("STAMP", True) + ".do_" + ss['task']
245 oe.path.remove(stfile) 245 oe.path.remove(stfile)
246 oe.path.remove(stfile + "_setscene")
246 oe.path.remove(stfile + ".*") 247 oe.path.remove(stfile + ".*")
248 oe.path.remove(stfile + "_setscene" + ".*")
247 249
248CLEANFUNCS += "sstate_cleanall" 250CLEANFUNCS += "sstate_cleanall"
249 251