summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-02 15:04:08 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-16 10:37:58 +0000
commit350a850d4436dfc9a77eea2c0f4e649cade71546 (patch)
tree470e388e636a1461e11a9db852d093754d30bb94 /meta/classes
parent87d51bd79bb2192a5466d1b1f5129bcd1e0cdc3e (diff)
downloadpoky-350a850d4436dfc9a77eea2c0f4e649cade71546.tar.gz
sstate: Ensure we don't remove sigbasedata files
We don't remove sigdata files, we also shouldn't remove sigbasedata files as this hinders debugging. (From OE-Core rev: 1ebd85f8dfe45b92c0137547c05e013e340f9cec) (From OE-Core rev: 3764a5ce8a1f26b46c389c256c10596ed8d31cc7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/sstate.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 172384b376..8643f3d247 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -457,7 +457,7 @@ def sstate_clean(ss, d):
457 rm_nohash = ".do_%s" % ss['task'] 457 rm_nohash = ".do_%s" % ss['task']
458 for stfile in glob.glob(wildcard_stfile): 458 for stfile in glob.glob(wildcard_stfile):
459 # Keep the sigdata 459 # Keep the sigdata
460 if ".sigdata." in stfile: 460 if ".sigdata." in stfile or ".sigbasedata." in stfile:
461 continue 461 continue
462 # Preserve taint files in the stamps directory 462 # Preserve taint files in the stamps directory
463 if stfile.endswith('.taint'): 463 if stfile.endswith('.taint'):