diff options
Diffstat (limited to 'meta/classes/insane.bbclass')
| -rw-r--r-- | meta/classes/insane.bbclass | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 336beaa061..41007f8e18 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
| @@ -173,10 +173,10 @@ def package_qa_check_rpath(file,name, d, elf, messages): | |||
| 173 | import re | 173 | import re |
| 174 | rpath_re = re.compile("\s+RPATH\s+(.*)") | 174 | rpath_re = re.compile("\s+RPATH\s+(.*)") |
| 175 | for line in phdrs.split("\n"): | 175 | for line in phdrs.split("\n"): |
| 176 | m = rpath_re.match(line) | 176 | m = rpath_re.match(line) |
| 177 | if m: | 177 | if m: |
| 178 | rpath = m.group(1) | 178 | rpath = m.group(1) |
| 179 | for dir in bad_dirs: | 179 | for dir in bad_dirs: |
| 180 | if dir in rpath: | 180 | if dir in rpath: |
| 181 | messages.append("package %s contains bad RPATH %s in file %s" % (name, rpath, file)) | 181 | messages.append("package %s contains bad RPATH %s in file %s" % (name, rpath, file)) |
| 182 | 182 | ||
| @@ -202,13 +202,13 @@ def package_qa_check_useless_rpaths(file, name, d, elf, messages): | |||
| 202 | import re | 202 | import re |
| 203 | rpath_re = re.compile("\s+RPATH\s+(.*)") | 203 | rpath_re = re.compile("\s+RPATH\s+(.*)") |
| 204 | for line in phdrs.split("\n"): | 204 | for line in phdrs.split("\n"): |
| 205 | m = rpath_re.match(line) | 205 | m = rpath_re.match(line) |
| 206 | if m: | 206 | if m: |
| 207 | rpath = m.group(1) | 207 | rpath = m.group(1) |
| 208 | if rpath_eq(rpath, libdir) or rpath_eq(rpath, base_libdir): | 208 | if rpath_eq(rpath, libdir) or rpath_eq(rpath, base_libdir): |
| 209 | # The dynamic linker searches both these places anyway. There is no point in | 209 | # The dynamic linker searches both these places anyway. There is no point in |
| 210 | # looking there again. | 210 | # looking there again. |
| 211 | messages.append("%s: %s contains probably-redundant RPATH %s" % (name, package_qa_clean_path(file, d), rpath)) | 211 | messages.append("%s: %s contains probably-redundant RPATH %s" % (name, package_qa_clean_path(file, d), rpath)) |
| 212 | 212 | ||
| 213 | QAPATHTEST[dev-so] = "package_qa_check_dev" | 213 | QAPATHTEST[dev-so] = "package_qa_check_dev" |
| 214 | def package_qa_check_dev(path, name, d, elf, messages): | 214 | def package_qa_check_dev(path, name, d, elf, messages): |
| @@ -463,7 +463,7 @@ def package_qa_textrel(path, name, d, elf, messages): | |||
| 463 | textrel_re = re.compile("\s+TEXTREL\s+") | 463 | textrel_re = re.compile("\s+TEXTREL\s+") |
| 464 | for line in phdrs.split("\n"): | 464 | for line in phdrs.split("\n"): |
| 465 | if textrel_re.match(line): | 465 | if textrel_re.match(line): |
| 466 | sane = False | 466 | sane = False |
| 467 | 467 | ||
| 468 | if not sane: | 468 | if not sane: |
| 469 | messages.append("ELF binary '%s' has relocations in .text" % path) | 469 | messages.append("ELF binary '%s' has relocations in .text" % path) |
| @@ -498,7 +498,7 @@ def package_qa_hash_style(path, name, d, elf, messages): | |||
| 498 | if "GNU_HASH" in line: | 498 | if "GNU_HASH" in line: |
| 499 | sane = True | 499 | sane = True |
| 500 | if "[mips32]" in line or "[mips64]" in line: | 500 | if "[mips32]" in line or "[mips64]" in line: |
| 501 | sane = True | 501 | sane = True |
| 502 | 502 | ||
| 503 | if has_syms and not sane: | 503 | if has_syms and not sane: |
| 504 | messages.append("No GNU_HASH in the elf binary: '%s'" % path) | 504 | messages.append("No GNU_HASH in the elf binary: '%s'" % path) |
