From: Martin Jansa Date: Sat, 2 Mar 2013 17:18:15 +0000 (+0100) Subject: bitbake.conf: move PERSISTENT_DIR outside TMPDIR X-Git-Tag: rev_ivi_2015_02_04~13517 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0301cdb5633e26ce3bcc254681867857d195ebf2;p=scm%2Fbb%2Ftizen-distro.git bitbake.conf: move PERSISTENT_DIR outside TMPDIR * PR service cache needs to be persistent between rebuilds having it in directory starting with tmp* does not help people to understand that it needs to be persistent, so move it to TOPDIR (From OE-Core rev: 5d43f752429707b74dbf46ecb81ac76bad7bb715) Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index b1c8dac..3afaf4a 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -327,7 +327,7 @@ FILE_DIRNAME = "${@os.path.dirname(d.getVar('FILE'))}" TMPDIR ?= "${TOPDIR}/tmp" CACHE = "${TMPDIR}/cache${@['', '/' + str(d.getVar('MACHINE', True))][bool(d.getVar('MACHINE', True))]}${@['', '/' + str(d.getVar('SDKMACHINE', True))][bool(d.getVar('SDKMACHINE', True))]}" # The persistent cache should be shared by all builds -PERSISTENT_DIR = "${TMPDIR}/cache" +PERSISTENT_DIR = "${TOPDIR}/cache" LOG_DIR = "${TMPDIR}/log" CO_DIR = "${DL_DIR}" CVSDIR = "${CO_DIR}/cvs"