diff options
author | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2007-04-07 06:31:31 +0000 |
---|---|---|
committer | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2007-04-07 06:31:31 +0000 |
commit | d57ad0d30ce194627146ebb970493d6947a0a744 (patch) | |
tree | 6c7e45a63eebf83755b9d0bb2a87fb0a627751c5 /classes/insane.bbclass | |
parent | a80e9ebf17143da2f5c5349e1615068ac2032df2 (diff) | |
parent | fdc7fdcb290bc46bc52e2b5b40c0cf1b9fcac8b1 (diff) |
merge of '351a1d2f8971414b26915d2d5c883576729b53f9'
and 'c6346a6de5d825ca4ddd2b7129cbcaeaf371c86a'
Diffstat (limited to 'classes/insane.bbclass')
-rw-r--r-- | classes/insane.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/classes/insane.bbclass b/classes/insane.bbclass index e5a1cd03d4..21348a8bb6 100644 --- a/classes/insane.bbclass +++ b/classes/insane.bbclass @@ -255,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... |