diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-06-24 15:58:18 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-06-25 10:23:37 +0100 |
commit | 132952c59c85ef15554dae088ffe934940cb3020 (patch) | |
tree | 481781f6833c9c672e3ba48c23157417428ce345 /scripts/install-buildtools | |
parent | 1dc6c9f5dc2429df5941b4d804d6ba34dc7b922c (diff) | |
download | poky-132952c59c85ef15554dae088ffe934940cb3020.tar.gz |
scripts/install-buildtools: Handle new format checksum files
Autobuilder generated checksum files only have a single space between the sum and the
filename, tweak it to account for this.
(From OE-Core rev: d1e71bf5b399372166eb40bb0d99c8fb52231600)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/install-buildtools')
-rwxr-xr-x | scripts/install-buildtools | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-buildtools b/scripts/install-buildtools index 5538ff7047..7118f48be9 100755 --- a/scripts/install-buildtools +++ b/scripts/install-buildtools | |||
@@ -241,7 +241,7 @@ def main(): | |||
241 | if ret != 0: | 241 | if ret != 0: |
242 | logger.error("Could not download file from %s" % check_url) | 242 | logger.error("Could not download file from %s" % check_url) |
243 | return ret | 243 | return ret |
244 | regex = re.compile(r"^(?P<checksum>[0-9a-f]+)\s\s(?P<path>.*/)?(?P<filename>.*)$") | 244 | regex = re.compile(r"^(?P<checksum>[0-9a-f]+)\s+(?P<path>.*/)?(?P<filename>.*)$") |
245 | with open(tmpbuildtools_checksum, 'rb') as f: | 245 | with open(tmpbuildtools_checksum, 'rb') as f: |
246 | original = f.read() | 246 | original = f.read() |
247 | m = re.search(regex, original.decode("utf-8")) | 247 | m = re.search(regex, original.decode("utf-8")) |