diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-02 15:04:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-03 13:27:30 +0000 |
commit | 1ebd85f8dfe45b92c0137547c05e013e340f9cec (patch) | |
tree | 61a89c0297427f0cc3b8cd41b89cda7d6e0672e6 /meta/classes | |
parent | c0231b1306034cc03987a5fbabd6f17125c9392b (diff) | |
download | openembedded-core-1ebd85f8dfe45b92c0137547c05e013e340f9cec.tar.gz openembedded-core-1ebd85f8dfe45b92c0137547c05e013e340f9cec.tar.bz2 openembedded-core-1ebd85f8dfe45b92c0137547c05e013e340f9cec.zip |
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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/sstate.bbclass | 2 |
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): rm_nohash = ".do_%s" % ss['task'] for stfile in glob.glob(wildcard_stfile): # Keep the sigdata - if ".sigdata." in stfile: + if ".sigdata." in stfile or ".sigbasedata." in stfile: continue # Preserve taint files in the stamps directory if stfile.endswith('.taint'): |