summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/sstate.bbclass3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index f7bd1174d8..c4f437bde5 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -375,6 +375,9 @@ def sstate_clean(ss, d):
375 # Keep the sigdata 375 # Keep the sigdata
376 if ".sigdata." in stfile: 376 if ".sigdata." in stfile:
377 continue 377 continue
378 # Preserve taint files in the stamps directory
379 if stfile.endswith('.taint'):
380 continue
378 if rm_stamp in stfile or rm_setscene in stfile or \ 381 if rm_stamp in stfile or rm_setscene in stfile or \
379 stfile.endswith(rm_nohash): 382 stfile.endswith(rm_nohash):
380 oe.path.remove(stfile) 383 oe.path.remove(stfile)