diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2017-03-27 03:39:13 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-01 08:14:58 +0100 |
commit | f57a53d5ab36f78f8393d4283503b6107d730195 (patch) | |
tree | 88dba9fbf3e6ded4fc8efab1be0bb743ad16da62 | |
parent | 64fd22e42e6f9883b206022051b238b7990d744a (diff) | |
download | poky-f57a53d5ab36f78f8393d4283503b6107d730195.tar.gz |
oe-run-native: OLDPATH -> OLD_PATH
It's a typo.
(From OE-Core rev: 1271d50e622cb3a0eef662de7112da04f05ef5bb)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/oe-run-native | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-run-native b/scripts/oe-run-native index 7e26ea3fcc..f2453e705a 100755 --- a/scripts/oe-run-native +++ b/scripts/oe-run-native | |||
@@ -40,7 +40,7 @@ if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then | |||
40 | fi | 40 | fi |
41 | . $SYSROOT_SETUP_SCRIPT | 41 | . $SYSROOT_SETUP_SCRIPT |
42 | 42 | ||
43 | OLDPATH=$PATH | 43 | OLD_PATH=$PATH |
44 | 44 | ||
45 | # look for a tool only in native sysroot | 45 | # look for a tool only in native sysroot |
46 | PATH=$OECORE_NATIVE_SYSROOT/usr/bin:$OECORE_NATIVE_SYSROOT/bin:$OECORE_NATIVE_SYSROOT/usr/sbin:$OECORE_NATIVE_SYSROOT/sbin | 46 | PATH=$OECORE_NATIVE_SYSROOT/usr/bin:$OECORE_NATIVE_SYSROOT/bin:$OECORE_NATIVE_SYSROOT/usr/sbin:$OECORE_NATIVE_SYSROOT/sbin |