diff options
author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-03-19 13:52:32 +0100 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-03-19 14:08:44 +0100 |
commit | d2b236841539692a3bd12574f7961855d19767fb (patch) | |
tree | 0f2ee378867e86ed6b9f8aa15472926779850346 | |
parent | 432c38351a0e98f897b0c029598de75895961f87 (diff) |
bitbake.conf: weak assignment for DEPLOY_DIR
-rw-r--r-- | conf/bitbake.conf | 4 |
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" |