From: Joshua Lock Date: Mon, 19 Jul 2010 10:31:40 +0000 (+0100) Subject: bitbake.conf: move PSTAGE_DIR and DL_DIR with build output X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac1f41da045f08588158dcb510989ff9db5b57a3;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/build/conf/local.conf.sample b/build/conf/local.conf.sample index e58c476a7df..32bd409ecc2 100644 --- a/build/conf/local.conf.sample +++ b/build/conf/local.conf.sample @@ -1,10 +1,12 @@ # CONF_VERSION is increased each time build/conf/ changes incompatibly CONF_VERSION = "1" -# Where to cache the files Poky downloads -DL_DIR ?= "${OEROOT}/sources" -# Where to cache Poky's built staging output -PSTAGE_DIR ?= "${OEROOT}/pstage" +# Uncomment and change to cache the files Poky downloads in an alternative +# location, default it ${TOPDIR}/sources +#DL_DIR ?= "${TOPDIR}/sources" +# Uncomment and change to cache Poky's built staging output in an alternative +# location, default ${TOPDIR}/pstage +#PSTAGE_DIR ?= "${TOPDIR}/pstage" # Uncomment and set to allow bitbake to execute multiple tasks at once. # For a quadcore, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would