diff options
author | Ross Burton <ross.burton@intel.com> | 2018-07-12 14:44:06 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-18 10:18:42 +0100 |
commit | 8df7480d1ce52010f2c91782ceacb25a61e80c2f (patch) | |
tree | 5ef002aa16a6f289b49d8799957607c0704e94ff /meta/classes | |
parent | f92cd3aad021e548e37b7628c04efee982aa8576 (diff) | |
download | poky-8df7480d1ce52010f2c91782ceacb25a61e80c2f.tar.gz |
insane: optimise buildpath search
Instead of decoding every file we open as UTF-8 (with many errors as machine
code isn't UTF-8), convert the build path to the UTF-8 byte representation and
search for that instead.
(From OE-Core rev: ffb52d383bfe413cf31fef13663fe9937a146c76)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/insane.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 713b40eac4..469d5c4cd5 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -535,9 +535,9 @@ def package_qa_check_buildpaths(path, name, d, elf, messages): | |||
535 | if path.find(name + "/CONTROL/") != -1 or path.find(name + "/DEBIAN/") != -1: | 535 | if path.find(name + "/CONTROL/") != -1 or path.find(name + "/DEBIAN/") != -1: |
536 | return | 536 | return |
537 | 537 | ||
538 | tmpdir = d.getVar('TMPDIR') | 538 | tmpdir = bytes(d.getVar('TMPDIR'), encoding="utf-8") |
539 | with open(path, 'rb') as f: | 539 | with open(path, 'rb') as f: |
540 | file_content = f.read().decode('utf-8', errors='ignore') | 540 | file_content = f.read() |
541 | if tmpdir in file_content: | 541 | if tmpdir in file_content: |
542 | package_qa_add_message(messages, "buildpaths", "File %s in package contained reference to tmpdir" % package_qa_clean_path(path,d)) | 542 | package_qa_add_message(messages, "buildpaths", "File %s in package contained reference to tmpdir" % package_qa_clean_path(path,d)) |
543 | 543 | ||