From: Richard Purdie Date: Sun, 31 May 2009 21:23:30 +0000 (+0100) Subject: bitbake.conf: Set PERSISTENT_DIR for the cache location so its common to all builds... X-Git-Tag: 2011-1~7386 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6a11cf7dfe930461a6660e3b783b546fa2634900;p=openembedded-core.git bitbake.conf: Set PERSISTENT_DIR for the cache location so its common to all builds of different machines Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 7f0da1b965..4c1b6f1fcd 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -227,6 +227,8 @@ FILESDIR = "${@bb.which(bb.data.getVar('FILESPATH', d, 1), '.')}" TMPDIR ?= "${TOPDIR}/tmp" CACHE = "${TMPDIR}/cache${@['', '/' + str(bb.data.getVar('MACHINE', d, 1))][bool(bb.data.getVar('MACHINE', d, 1))]}" +# The persistent cache should be shared by all builds +PERSISTENT_DIR = "${TMPDIR}/cache" CO_DIR = "${DL_DIR}" CVSDIR = "${CO_DIR}/cvs" SVNDIR = "${CO_DIR}/svn"