diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-19 01:16:05 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-19 01:16:32 +0000 |
commit | 273cfeccb7715890be645112966b6a7c5f35ec07 (patch) | |
tree | e4cd1ad967aa169c5b98a393e4afdbd4cf401afc /meta/classes/sstate.bbclass | |
parent | 62432306752c9863780a7addf60b06f8035eddd4 (diff) | |
download | poky-273cfeccb7715890be645112966b6a7c5f35ec07.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/sstate.bbclass')
-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 47d05689b6..d57c183004 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -241,7 +241,9 @@ def sstate_clean(ss, d): | |||
241 | 241 | ||
242 | stfile = d.getVar("STAMP", True) + ".do_" + ss['task'] | 242 | stfile = d.getVar("STAMP", True) + ".do_" + ss['task'] |
243 | oe.path.remove(stfile) | 243 | oe.path.remove(stfile) |
244 | oe.path.remove(stfile + "_setscene") | ||
244 | oe.path.remove(stfile + ".*") | 245 | oe.path.remove(stfile + ".*") |
246 | oe.path.remove(stfile + "_setscene" + ".*") | ||
245 | 247 | ||
246 | CLEANFUNCS += "sstate_cleanall" | 248 | CLEANFUNCS += "sstate_cleanall" |
247 | 249 | ||