From ca0a6025351cb2135e87cecf828633cf12aa34c6 Mon Sep 17 00:00:00 2001 From: Vijai Kumar K Date: Tue, 1 Sep 2020 15:32:33 +0530 Subject: wic: misc: Add /bin to the list of searchpaths /bin is also a valid path where one can find executables. Add that to the search path. Signed-off-by: Vijai Kumar K Signed-off-by: Richard Purdie --- scripts/lib/wic/misc.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/lib/wic/misc.py b/scripts/lib/wic/misc.py index 91975ba151..4b08d649c6 100644 --- a/scripts/lib/wic/misc.py +++ b/scripts/lib/wic/misc.py @@ -138,8 +138,9 @@ def exec_native_cmd(cmd_and_args, native_sysroot, pseudo=""): if pseudo: cmd_and_args = pseudo + cmd_and_args - native_paths = "%s/sbin:%s/usr/sbin:%s/usr/bin" % \ - (native_sysroot, native_sysroot, native_sysroot) + native_paths = "%s/sbin:%s/usr/sbin:%s/usr/bin:%s/bin" % \ + (native_sysroot, native_sysroot, + native_sysroot, native_sysroot) native_cmd_and_args = "export PATH=%s:$PATH;%s" % \ (native_paths, cmd_and_args) -- cgit 1.2.3-korg