aboutsummaryrefslogtreecommitdiffstats
path: root/conf/bitbake.conf
diff options
context:
space:
mode:
authorMichael 'Mickey' Lauer <mickey@vanille-media.de>2009-03-19 13:52:32 +0100
committerMichael 'Mickey' Lauer <mickey@vanille-media.de>2009-03-19 14:08:44 +0100
commitd2b236841539692a3bd12574f7961855d19767fb (patch)
tree0f2ee378867e86ed6b9f8aa15472926779850346 /conf/bitbake.conf
parent432c38351a0e98f897b0c029598de75895961f87 (diff)
downloadopenembedded-d2b236841539692a3bd12574f7961855d19767fb.tar.gz
bitbake.conf: weak assignment for DEPLOY_DIR
Diffstat (limited to 'conf/bitbake.conf')
-rw-r--r--conf/bitbake.conf4
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf
index a4483bcaeb..68301bc478 100644
--- a/conf/bitbake.conf
+++ b/conf/bitbake.conf
@@ -284,7 +284,9 @@ STAGING_DIR_TARGET = "${STAGING_DIR}/${BASEPKG_TARGET_SYS}"
STAGING_DIR_SDK = "${STAGING_DIR}/${SDK_SYS}"
-DEPLOY_DIR = "${TMPDIR}/deploy"
+# Setting DEPLOY_DIR outside of TMPDIR is helpful, when you are using
+# packaged staging and/or multimachine.
+DEPLOY_DIR ?= "${TMPDIR}/deploy"
DEPLOY_DIR_TAR = "${DEPLOY_DIR}/tar"
DEPLOY_DIR_IPK = "${DEPLOY_DIR}/ipk"
DEPLOY_DIR_RPM = "${DEPLOY_DIR}/rpm"