diff options
author | Ross Burton <ross.burton@intel.com> | 2016-02-15 17:48:25 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-16 11:16:49 +0000 |
commit | c136652f9c0b35aafa393e63567daf029ae03929 (patch) | |
tree | 699e3bac39bf15877a81deb992f769ce491ecd3a /meta/classes/uninative.bbclass | |
parent | d3af2058e2753516b9aaf7f6d71162363eea11d4 (diff) | |
download | openembedded-core-c136652f9c0b35aafa393e63567daf029ae03929.tar.gz openembedded-core-c136652f9c0b35aafa393e63567daf029ae03929.tar.bz2 openembedded-core-c136652f9c0b35aafa393e63567daf029ae03929.zip |
lib/qa.py: raise ValueError if file isn't an ELF
Instead of raising a generic Exception that can't be handled specifically, raise
a ValueError. Also update the callers so any unexpected exceptions are not
ignored.
Also, rename isBigEngian() to isBigEndian().
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/uninative.bbclass')
-rw-r--r-- | meta/classes/uninative.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass index 0448cf6cdc..b14cec065e 100644 --- a/meta/classes/uninative.bbclass +++ b/meta/classes/uninative.bbclass @@ -80,7 +80,7 @@ python uninative_changeinterp () { elf = oe.qa.ELFFile(f) try: elf.open() - except: + except ValueError: continue #bb.warn("patchelf-uninative --set-interpreter %s %s" % (d.getVar("UNINATIVE_LOADER", True), f)) |