diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-20 14:01:36 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-20 14:01:36 +0000 |
commit | 35b54876fa2976e668dc00ecf3f3f7121bda2dce (patch) | |
tree | bfa730ebca2c22f253bb80f1515629ff15d92c6d /classes | |
parent | f237fbbcfaf944f2e5e29178072365247eb2e873 (diff) |
insane.bbclass: remove commented code to unbreak builds
Diffstat (limited to 'classes')
-rw-r--r-- | classes/insane.bbclass | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/classes/insane.bbclass b/classes/insane.bbclass index 29a090c16a..045c3051d9 100644 --- a/classes/insane.bbclass +++ b/classes/insane.bbclass @@ -264,12 +264,6 @@ def package_qa_check_arch(path,name,d): 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))) 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))) -# sane = package_qa_make_fatal_error( 4, name, path, d ) -# elif not abiversion == elf.abiVersion(): -# bb.error("ABI version did not match (%d to %d) on %s" % (abiversion, elf.abiVersion(), package_qa_clean_path(path,d))) -# sane = package_qa_make_fatal_error( 4, name, path, d ) elif not littleendian == elf.isLittleEndian(): bb.error("Endiannes did not match (%d to %d) on %s" % (littleendian, elf.isLittleEndian(), package_qa_clean_path(path,d))) sane = package_qa_make_fatal_error( 4, name, path, d ) |