mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
insane: Don't try to run objdump on symlinks
If the link is absolute then we might end up reading from a host binary or a nonexistent path, neither of which will produce useful results and may result in objdump failure and python backtrace spew. If the link does point to a binary within the installation root then we will scan the pointed-to file at some point anyway so there is no need to do it again. (From OE-Core rev: 91769af1c1175ac9bb43d16d05fb1c8736dd9287) Signed-off-by: Phil Blundell <pb@pbcl.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
f8c90bce73
commit
0fd014eada
@@ -157,6 +157,9 @@ def package_qa_check_rpath(file,name, d, elf, messages):
|
|||||||
if not elf:
|
if not elf:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if os.path.islink(file):
|
||||||
|
return
|
||||||
|
|
||||||
bad_dirs = [d.getVar('TMPDIR', True) + "/work", d.getVar('STAGING_DIR_TARGET', True)]
|
bad_dirs = [d.getVar('TMPDIR', True) + "/work", d.getVar('STAGING_DIR_TARGET', True)]
|
||||||
bad_dir_test = d.getVar('TMPDIR', True)
|
bad_dir_test = d.getVar('TMPDIR', True)
|
||||||
|
|
||||||
@@ -186,6 +189,9 @@ def package_qa_check_useless_rpaths(file, name, d, elf, messages):
|
|||||||
if not elf:
|
if not elf:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if os.path.islink(file):
|
||||||
|
return
|
||||||
|
|
||||||
libdir = d.getVar("libdir", True)
|
libdir = d.getVar("libdir", True)
|
||||||
base_libdir = d.getVar("base_libdir", True)
|
base_libdir = d.getVar("base_libdir", True)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user