mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
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) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -457,7 +457,7 @@ def sstate_clean(ss, d):
|
|||||||
rm_nohash = ".do_%s" % ss['task']
|
rm_nohash = ".do_%s" % ss['task']
|
||||||
for stfile in glob.glob(wildcard_stfile):
|
for stfile in glob.glob(wildcard_stfile):
|
||||||
# Keep the sigdata
|
# Keep the sigdata
|
||||||
if ".sigdata." in stfile:
|
if ".sigdata." in stfile or ".sigbasedata." in stfile:
|
||||||
continue
|
continue
|
||||||
# Preserve taint files in the stamps directory
|
# Preserve taint files in the stamps directory
|
||||||
if stfile.endswith('.taint'):
|
if stfile.endswith('.taint'):
|
||||||
|
|||||||
Reference in New Issue
Block a user