summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2010-07-19 11:31:40 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-21 15:39:52 +0100
commit50629b3746c149b22bdd8664842a4c69abb2b989 (patch)
treef2a78bf127a8bb00947b1f8d4ff6a5d05537bef1 /meta
parentdf563f0d28cd0ac25a6042b58e89cc51dedea352 (diff)
downloadpoky-50629b3746c149b22bdd8664842a4c69abb2b989.tar.gz
bitbake.conf: move PSTAGE_DIR and DL_DIR with build output
Having PSTAGE_DIR be a top level directory by default doesn't make sense, move it to be a child of the build directory so that it lives with all other built output. Also move DL_DIR to a child of the build directory for the use case of an unwriteable $OEROOT. Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r--meta/conf/bitbake.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index ab91b932c4..daf978025c 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -626,8 +626,8 @@ require conf/abi_version.conf
626# Weak variables (usually to retain backwards compatibility) 626# Weak variables (usually to retain backwards compatibility)
627################################################################## 627##################################################################
628 628
629DL_DIR ?= "${TMPDIR}/downloads" 629DL_DIR ?= "${TOPDIR}/downloads"
630PSTAGE_DIR ?= "${TMPDIR}/pstage" 630PSTAGE_DIR ?= "${TOPDIR}/pstage"
631IMAGE_FSTYPES ?= "tar.gz" 631IMAGE_FSTYPES ?= "tar.gz"
632PCMCIA_MANAGER ?= "pcmcia-cs" 632PCMCIA_MANAGER ?= "pcmcia-cs"
633DEFAULT_TASK_PROVIDER ?= "task-base" 633DEFAULT_TASK_PROVIDER ?= "task-base"