diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-15 12:54:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-15 12:58:00 +0100 |
commit | b85fd33e7d54644f18b418a142bfd6b15e31d1c3 (patch) | |
tree | 8964e5bbeb0771827159e792dcbc7fb5eb8d8798 /scripts | |
parent | 652fdf8719ba5cf2c486bf3d19904b5140dbd0d1 (diff) | |
download | poky-b85fd33e7d54644f18b418a142bfd6b15e31d1c3.tar.gz |
sstate: Fixes for eSDK generation after zstd switch
(From OE-Core rev: f5a90df08631117cd66bec68cb1851db96822bb8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gen-lockedsig-cache | 3 |
1 files changed, 1 insertions, 2 deletions
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 |