From 50629b3746c149b22bdd8664842a4c69abb2b989 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Mon, 19 Jul 2010 11:31:40 +0100 Subject: 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 --- meta/conf/bitbake.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta') 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 # Weak variables (usually to retain backwards compatibility) ################################################################## -DL_DIR ?= "${TMPDIR}/downloads" -PSTAGE_DIR ?= "${TMPDIR}/pstage" +DL_DIR ?= "${TOPDIR}/downloads" +PSTAGE_DIR ?= "${TOPDIR}/pstage" IMAGE_FSTYPES ?= "tar.gz" PCMCIA_MANAGER ?= "pcmcia-cs" DEFAULT_TASK_PROVIDER ?= "task-base" -- cgit v1.2.3-54-g00ecf