diff options
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 2 | ||||
-rwxr-xr-x | scripts/gen-lockedsig-cache | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 35679208bc..9187f53f13 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -550,7 +550,7 @@ python copy_buildsystem () { | |||
550 | # We don't need sstate do_package files | 550 | # We don't need sstate do_package files |
551 | for root, dirs, files in os.walk(sstate_out): | 551 | for root, dirs, files in os.walk(sstate_out): |
552 | for name in files: | 552 | for name in files: |
553 | if name.endswith("_package.tgz"): | 553 | if name.endswith("_package.tar.zst"): |
554 | f = os.path.join(root, name) | 554 | f = os.path.join(root, name) |
555 | os.remove(f) | 555 | os.remove(f) |
556 | 556 | ||
diff --git a/scripts/gen-lockedsig-cache b/scripts/gen-lockedsig-cache index cd8f9a4356..cc674f9c1b 100755 --- a/scripts/gen-lockedsig-cache +++ b/scripts/gen-lockedsig-cache | |||
@@ -94,8 +94,7 @@ print("Gathering file list took %.1fs" % elapsed) | |||
94 | print('Processing files') | 94 | print('Processing files') |
95 | for f in files: | 95 | for f in files: |
96 | sys.stdout.write('Processing %s... ' % f) | 96 | sys.stdout.write('Processing %s... ' % f) |
97 | _, ext = os.path.splitext(f) | 97 | if not f.endswith(('.tar.zst', '.siginfo', '.sig')): |
98 | if not ext in ['.tgz', '.siginfo', '.sig']: | ||
99 | # Most likely a temp file, skip it | 98 | # Most likely a temp file, skip it |
100 | print('skipping') | 99 | print('skipping') |
101 | continue | 100 | continue |