diff options
-rw-r--r-- | meta/classes-global/insane.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes-global/insane.bbclass b/meta/classes-global/insane.bbclass index f1d711c77c..bdc7f2b703 100644 --- a/meta/classes-global/insane.bbclass +++ b/meta/classes-global/insane.bbclass | |||
@@ -363,6 +363,7 @@ def package_qa_check_arch(path,name,d, elf): | |||
363 | elif not ((littleendian == elf.isLittleEndian()) or is_bpf): | 363 | elif not ((littleendian == elf.isLittleEndian()) or is_bpf): |
364 | oe.qa.handle_error("arch", "Endiannes did not match (%d, expected %d) in %s" % \ | 364 | oe.qa.handle_error("arch", "Endiannes did not match (%d, expected %d) in %s" % \ |
365 | (elf.isLittleEndian(), littleendian, package_qa_clean_path(path, d, name)), d) | 365 | (elf.isLittleEndian(), littleendian, package_qa_clean_path(path, d, name)), d) |
366 | package_qa_check_arch[vardepsexclude] = "DEFAULTTUNE" | ||
366 | 367 | ||
367 | QAPATHTEST[desktop] = "package_qa_check_desktop" | 368 | QAPATHTEST[desktop] = "package_qa_check_desktop" |
368 | def package_qa_check_desktop(path, name, d, elf): | 369 | def package_qa_check_desktop(path, name, d, elf): |
@@ -618,6 +619,7 @@ def check_32bit_symbols(path, packagename, d, elf): | |||
618 | for sym in usedapis: | 619 | for sym in usedapis: |
619 | oe.qa.handle_error('32bit-time', msgformat % sym, d) | 620 | oe.qa.handle_error('32bit-time', msgformat % sym, d) |
620 | oe.qa.handle_error('32bit-time', 'Suppress with INSANE_SKIP = "32bit-time"', d) | 621 | oe.qa.handle_error('32bit-time', 'Suppress with INSANE_SKIP = "32bit-time"', d) |
622 | check_32bit_symbols[vardepsexclude] = "OVERRIDES" | ||
621 | 623 | ||
622 | # Check license variables | 624 | # Check license variables |
623 | do_populate_lic[postfuncs] += "populate_lic_qa_checksum" | 625 | do_populate_lic[postfuncs] += "populate_lic_qa_checksum" |