mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
python3: fix missing comma in get_module_deps3.py
Wes Tarro <wes.tarro@azuresummit.com> noticed a missing comma in a preplace() call, add it. That said, calling replace() with one argument results in a TypeError, so this is obviously dead code. (From OE-Core rev: 9b2e2c8d809e7ca34451ec9702b029a00dfb410b) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b2fdcd72a9
commit
f622013d3f
@@ -32,7 +32,7 @@ def fix_path(dep_path):
|
||||
dep_path = dep_path[dep_path.find(pivot)+len(pivot):]
|
||||
|
||||
if '/usr/bin' in dep_path:
|
||||
dep_path = dep_path.replace('/usr/bin''${bindir}')
|
||||
dep_path = dep_path.replace('/usr/bin','${bindir}')
|
||||
|
||||
# Handle multilib, is there a better way?
|
||||
if '/usr/lib32' in dep_path:
|
||||
|
||||
Reference in New Issue
Block a user