diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/sstate.bbclass | 2 |
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 | ||
248 | CLEANFUNCS += "sstate_cleanall" | 250 | CLEANFUNCS += "sstate_cleanall" |
249 | 251 | ||