diff options
author | Jun Zhang <jun.zhang@windriver.com> | 2016-02-19 16:00:43 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-21 09:31:59 +0000 |
commit | 1116572916443109176c0df32efc275eceeb706a (patch) | |
tree | 39fbf9fbdaeaab6a8402b1586ca0e66dc939e106 /meta/conf/bitbake.conf | |
parent | 1602e8edf998ad2cd7dc06c5d55f4aad1ff24af1 (diff) | |
download | openembedded-core-1116572916443109176c0df32efc275eceeb706a.tar.gz openembedded-core-1116572916443109176c0df32efc275eceeb706a.tar.bz2 openembedded-core-1116572916443109176c0df32efc275eceeb706a.zip |
toolchain-scripts.bbclass: add three other path to PATH in env.sh
in sdk,there are some utils in sysroot/host-os/bin, sysroot/host-os/sbin/,sysroot/host-os/usr/bin need to use, so add these three paths to PATH in env.sh.
Signed-off-by: Jun Zhang <jun.zhang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 631b759349..4ea0fe56fa 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -62,6 +62,9 @@ bindir_cross = "/bin" bindir_crossscripts = "${bindir}/crossscripts" prefix_nativesdk = "/usr" bindir_nativesdk = "${prefix_nativesdk}/bin" +sbindir_nativesdk = "${prefix_nativesdk}/sbin" +base_bindir_nativesdk = "/bin" +base_sbindir_nativesdk = "/sbin" includedir_nativesdk = "${prefix_nativesdk}/include" libdir_nativesdk = "${prefix_nativesdk}/lib" base_libdir_nativesdk = "/lib" |