From: Richard Purdie Date: Thu, 21 Feb 2008 10:13:26 +0000 (+0000) Subject: bitbake.conf: Make sure CCACHE uses expanded data when searching the PATH (from poky) X-Git-Tag: Release-2010-05/1~7644^2~1^2~2^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eaa6fa080f580cda447d464568c3b5076da7f5b2;p=openembedded.git bitbake.conf: Make sure CCACHE uses expanded data when searching the PATH (from poky) --- diff --git a/conf/bitbake.conf b/conf/bitbake.conf index a3706b1b6b..4caa55c0b6 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -310,7 +310,7 @@ export PATH_prepend = "${STAGING_BINDIR_CROSS}:${STAGING_DIR_NATIVE}${layout_sbi # Build utility info. ################################################################## -CCACHE = "${@bb.which(bb.data.getVar('PATH', d), 'ccache') and 'ccache '}" +CCACHE = "${@bb.which(bb.data.getVar('PATH', d, 1), 'ccache') and 'ccache '}" TOOLCHAIN_OPTIONS = "" export CC = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}"