support/testing: strip /usr/ part from HOST_DIR

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Arnout Vandecappelle 2017-07-10 01:21:19 +02:00 committed by Thomas Petazzoni
parent 2a47bd37b5
commit 73e7bcdd87

View File

@ -55,7 +55,7 @@ def get_elf_arch_tag(builddir, prefix, fpath, tag):
v5TEJ
>>>
"""
cmd = ["host/usr/bin/{}-readelf".format(prefix),
cmd = ["host/bin/{}-readelf".format(prefix),
"-A", os.path.join("target", fpath)]
out = subprocess.check_output(cmd, cwd=builddir, env={"LANG": "C"})
regexp = re.compile("^ {}: (.*)$".format(tag))
@ -80,7 +80,7 @@ def get_elf_prog_interpreter(builddir, prefix, fpath):
/lib/ld-linux-armhf.so.3
>>>
"""
cmd = ["host/usr/bin/{}-readelf".format(prefix),
cmd = ["host/bin/{}-readelf".format(prefix),
"-l", os.path.join("target", fpath)]
out = subprocess.check_output(cmd, cwd=builddir, env={"LANG": "C"})
regexp = re.compile("^ *\[Requesting program interpreter: (.*)\]$")