diff options
author | Koen Kooi <koen@openembedded.org> | 2007-02-20 11:36:51 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-02-20 11:36:51 +0000 |
commit | 7fe797b41116ef91d5ec66ba90bb5e4ca1874ac9 (patch) | |
tree | c91a1cb8107ffbb21f7c69c887eeaa275ce75137 /classes | |
parent | 1f97b6e2d01ca4e501e40b7cd30aaa1dd064825d (diff) |
insane.bbclass: we really don't want packages with the wrong architecture, so do bb.fatal instead if bb.error
symptom:
ERROR: Architecture did not match (20 to 3) on /work/ppc603e-angstrom-linux/udev-092-r15/install/udev/sbin/scsi_id
This means OE detected type 3 (i386) while it expected type 20 (powerpc), most likely caused by some fool hardcoding 'gcc' as compiler
Diffstat (limited to 'classes')
-rw-r--r-- | classes/insane.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/insane.bbclass b/classes/insane.bbclass index 58f9ab54dd..6e8c90a706 100644 --- a/classes/insane.bbclass +++ b/classes/insane.bbclass @@ -246,7 +246,7 @@ def package_qa_check_arch(path,name,d): target_os = bb.data.getVar('TARGET_OS', d, True) target_arch = bb.data.getVar('TARGET_ARCH', d, True) - #this will throw an exception, then fix the dict above + #if this will throw an exception, then fix the dict above (machine, osabi, abiversion, littleendian) = package_qa_get_machine_dict()[target_os][target_arch] elf = package_qa_get_elf(path) try: @@ -257,7 +257,7 @@ def package_qa_check_arch(path,name,d): sane = True if not machine == elf.machine(): - bb.error("Architecture did not match (%d to %d) on %s" %(machine, elf.machine(), package_qa_clean_path(path,d))) + bb.fatal("Architecture did not match (%d to %d) on %s" %(machine, elf.machine(), package_qa_clean_path(path,d))) sane = package_qa_make_fatal_error( 4, name, path, d ) elif not osabi == elf.osAbi(): bb.error("OSABI did not match (%d to %d) on %s" % (osabi, elf.osAbi(), package_qa_clean_path(path,d))) |