diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-03-02 18:18:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-02 22:45:26 +0000 |
commit | 76334678a27a63fd5cdaff6fb00dda48fba9416e (patch) | |
tree | 5bd485940fdb33487c6f94831822f42e7563bd5d /meta/conf/bitbake.conf | |
parent | f730a3a037ba03234358838ca7712b5ea195bca5 (diff) | |
download | poky-76334678a27a63fd5cdaff6fb00dda48fba9416e.tar.gz |
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 <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index b1c8dac035..3afaf4ab2b 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -327,7 +327,7 @@ FILE_DIRNAME = "${@os.path.dirname(d.getVar('FILE'))}" | |||
327 | TMPDIR ?= "${TOPDIR}/tmp" | 327 | TMPDIR ?= "${TOPDIR}/tmp" |
328 | CACHE = "${TMPDIR}/cache${@['', '/' + str(d.getVar('MACHINE', True))][bool(d.getVar('MACHINE', True))]}${@['', '/' + str(d.getVar('SDKMACHINE', True))][bool(d.getVar('SDKMACHINE', True))]}" | 328 | CACHE = "${TMPDIR}/cache${@['', '/' + str(d.getVar('MACHINE', True))][bool(d.getVar('MACHINE', True))]}${@['', '/' + str(d.getVar('SDKMACHINE', True))][bool(d.getVar('SDKMACHINE', True))]}" |
329 | # The persistent cache should be shared by all builds | 329 | # The persistent cache should be shared by all builds |
330 | PERSISTENT_DIR = "${TMPDIR}/cache" | 330 | PERSISTENT_DIR = "${TOPDIR}/cache" |
331 | LOG_DIR = "${TMPDIR}/log" | 331 | LOG_DIR = "${TMPDIR}/log" |
332 | CO_DIR = "${DL_DIR}" | 332 | CO_DIR = "${DL_DIR}" |
333 | CVSDIR = "${CO_DIR}/cvs" | 333 | CVSDIR = "${CO_DIR}/cvs" |