diff options
| author | Shane Volpe <shanevolpe@gmail.com> | 2007-04-07 20:23:43 +0000 |
|---|---|---|
| committer | Shane Volpe <shanevolpe@gmail.com> | 2007-04-07 20:23:43 +0000 |
| commit | 3a5e5c11ca9e5d3686fce546e33eacc62f5e7dcd (patch) | |
| tree | 4f25aacf8558a773fad14e0018d4afb9f560237f /classes/insane.bbclass | |
| parent | 1ff6665ead8253bb6adde2afeb004f9ef625f4f4 (diff) | |
| parent | 2effa2e0213c0cecaf6d3a0ca7390a288ebc9908 (diff) | |
merge of '59b19c7d48e754418caf1f4214b1ce53d2cca5c4'
and 'f4a044e0ef8b886ef1bdc74ae09f12874ddf7130'
Diffstat (limited to 'classes/insane.bbclass')
| -rw-r--r-- | classes/insane.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/classes/insane.bbclass b/classes/insane.bbclass index 1f20fa6614..21348a8bb6 100644 --- a/classes/insane.bbclass +++ b/classes/insane.bbclass @@ -59,6 +59,7 @@ def package_qa_get_machine_dict(): }, "linux-gnueabi" : { "arm" : (40, 0, 0, True, True), + "armeb" : (40, 0, 0, False, True), }, } @@ -254,6 +255,10 @@ def package_qa_check_arch(path,name,d): import bb, os target_os = bb.data.getVar('TARGET_OS', d, True) target_arch = bb.data.getVar('TARGET_ARCH', d, True) + + # FIXME: Cross package confuse this check, so just skip them + if bb.data.inherits_class('cross', d): + return True # avoid following links to /usr/bin (e.g. on udev builds) # we will check the files pointed to anyway... |
