[oe-commits] Tom Zanussi : wic: Fix exec_native_cmd() path

git at git.openembedded.org git at git.openembedded.org
Thu Feb 20 14:22:28 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: e10c1102d958ffc6b521fb36c6bc51d896503218
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=e10c1102d958ffc6b521fb36c6bc51d896503218

Author: Tom Zanussi <tom.zanussi at linux.intel.com>
Date:   Wed Feb 19 14:53:36 2014 -0600

wic: Fix exec_native_cmd() path

The path exported in exec_native_cmd() includes bogus 'PATH=' which
means the native paths for all but the first will be ignored.

Signed-off-by: Tom Zanussi <tom.zanussi at linux.intel.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 scripts/lib/mic/utils/oe/misc.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/lib/mic/utils/oe/misc.py b/scripts/lib/mic/utils/oe/misc.py
index 6b01955..d65b77a 100644
--- a/scripts/lib/mic/utils/oe/misc.py
+++ b/scripts/lib/mic/utils/oe/misc.py
@@ -74,7 +74,7 @@ def exec_native_cmd(cmd_and_args, native_sysroot, catch = 3):
     Always need to execute native commands as_shell
     """
     native_paths = \
-        "export PATH=%s/sbin:PATH=%s/usr/sbin:PATH=%s/usr/bin:$PATH" % \
+        "export PATH=%s/sbin:%s/usr/sbin:%s/usr/bin:$PATH" % \
         (native_sysroot, native_sysroot, native_sysroot)
     native_cmd_and_args = "%s;%s" % (native_paths, cmd_and_args)
     msger.debug("exec_native_cmd: %s" % cmd_and_args)



More information about the Openembedded-commits mailing list