From: Noor Ahsan <[email protected]> * bpn variable was used but it was not defined. Add bpn to resolve that issue.
Signed-off-by: Noor Ahsan <[email protected]> --- meta/classes/insane.bbclass | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 6298136..1cfb898 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -328,6 +328,7 @@ def package_qa_check_arch(path,name,d, elf, messages): target_os = d.getVar('TARGET_OS', True) target_arch = d.getVar('TARGET_ARCH', True) provides = d.getVar('PROVIDES', d, True) + bpn = d.getVar('BPN', True) # FIXME: Cross package confuse this check, so just skip them for s in ['cross', 'nativesdk', 'cross-canadian']: -- 1.7.9 _______________________________________________ Openembedded-core mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
