summaryrefslogtreecommitdiffstats
path: root/meta/conf/distro/defaultsetup.conf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-17 12:48:29 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-19 23:49:54 +0100
commit624263c82d1dabb55862a6532a2df2b8a4b541dc (patch)
treec50de744d2f7ee742ebf3276f492de56b04df728 /meta/conf/distro/defaultsetup.conf
parent09862c423921e5272dedba111e0b6057dcd37d12 (diff)
downloadpoky-624263c82d1dabb55862a6532a2df2b8a4b541dc.tar.gz
distro/defaultsetup.conf: Append TCLIBC to TMPDIR by default
The current solutions to share uclibc, eglibc and glibc builds in the same tree all have various issues associated with them. Appending the suffix to TMPDIR seems like the best solution since sstate (which defaults to outside TMPDIR) will allow reuse of any components. This avoids messy changes to the core with other approaches to this problem inevitably entail, usually in code where this abstraction isn;'t logically best placed. (From OE-Core rev: f2528db8f466a21ca207b310fffa7b05884b4579) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/distro/defaultsetup.conf')
-rw-r--r--meta/conf/distro/defaultsetup.conf4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/conf/distro/defaultsetup.conf b/meta/conf/distro/defaultsetup.conf
index 9f12f4da11..072f03c902 100644
--- a/meta/conf/distro/defaultsetup.conf
+++ b/meta/conf/distro/defaultsetup.conf
@@ -12,6 +12,10 @@ require conf/distro/include/tcmode-${TCMODE}.inc
12TCLIBC ?= "eglibc" 12TCLIBC ?= "eglibc"
13require conf/distro/include/tclibc-${TCLIBC}.inc 13require conf/distro/include/tclibc-${TCLIBC}.inc
14 14
15# Allow single libc distros to disable this code
16TCLIBCAPPEND ?= "-${TCLIBC}"
17TMPDIR_append = "${TCLIBCAPPEND}"
18
15CACHE = "${TMPDIR}/cache/${TCMODE}-${TCLIBC}${@['', '/' + 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))]}" 19CACHE = "${TMPDIR}/cache/${TCMODE}-${TCLIBC}${@['', '/' + 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))]}"
16 20
17USER_CLASSES ?= "" 21USER_CLASSES ?= ""