From c1c058fc29f916c2f000bb7195f6195e271873b0 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 27 Oct 2010 17:27:34 -0700 Subject: bitbake.conf: include bin dirs from BBPATH in PATH MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Chris Larson Acked-by: Khem Raj Acked-by: Eric BĂ©nard --- conf/bitbake.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'conf/bitbake.conf') diff --git a/conf/bitbake.conf b/conf/bitbake.conf index ad2e721c77..1baecc10cf 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -448,7 +448,8 @@ EXTRA_IMAGEDEPENDS = "" LIBTOOL_HAS_SYSROOT ?= "no" LIBTOOL_HAS_SYSROOT[type] = "boolean" -PATH_prepend = "${STAGING_BINDIR_CROSS}:${STAGING_DIR_NATIVE}${sbindir_native}:${STAGING_BINDIR_NATIVE}:${STAGING_DIR_NATIVE}${base_sbindir_native}:${STAGING_DIR_NATIVE}/${base_bindir_native}:" +BBPATH_BIN = "${@':'.join('%s/bin' % path for path in '${BBPATH}'.split(':'))}" +PATH_prepend = "${BBPATH_BIN}:${STAGING_BINDIR_CROSS}:${STAGING_DIR_NATIVE}${sbindir_native}:${STAGING_BINDIR_NATIVE}:${STAGING_DIR_NATIVE}${base_sbindir_native}:${STAGING_DIR_NATIVE}/${base_bindir_native}:" PATH[type] = "list" PATH[separator] = ":" export PATH -- cgit 1.2.3-korg