From: Nitin A Kamble Date: Fri, 28 May 2010 17:48:34 +0000 (-0700) Subject: bitbake.conf: add the LOG_DIR variable X-Git-Tag: 2011-1~5945 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=2ddc6c4b03395e3e5332d23aab61070c49885465;p=openembedded-core.git bitbake.conf: add the LOG_DIR variable Signed-off-by: Nitin A Kamble --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 528eef97ff..c9348ade39 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -236,6 +236,7 @@ TMPDIR ?= "${TOPDIR}/tmp" CACHE = "${TMPDIR}/cache${@['', '/' + str(bb.data.getVar('MACHINE', d, 1))][bool(bb.data.getVar('MACHINE', d, 1))]}${@['', '/' + str(bb.data.getVar('SDKMACHINE', d, 1))][bool(bb.data.getVar('SDKMACHINE', d, 1))]}" # The persistent cache should be shared by all builds PERSISTENT_DIR = "${TMPDIR}/cache" +LOG_DIR = "${TMPDIR}/log" CO_DIR = "${DL_DIR}" CVSDIR = "${CO_DIR}/cvs" SVNDIR = "${CO_DIR}/svn"