summaryrefslogtreecommitdiffstats
path: root/meta/classes/sstate.bbclass
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:16:32 +0000
commit273cfeccb7715890be645112966b6a7c5f35ec07 (patch)
treee4cd1ad967aa169c5b98a393e4afdbd4cf401afc /meta/classes/sstate.bbclass
parent62432306752c9863780a7addf60b06f8035eddd4 (diff)
downloadpoky-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.bbclass2
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
246CLEANFUNCS += "sstate_cleanall" 248CLEANFUNCS += "sstate_cleanall"
247 249