[oe] Multiple bitbake and a shared DL_DIR location - race conditions?

Leon Woestenberg leon.woestenberg at gmail.com
Tue Mar 4 11:13:48 UTC 2008


Richard,

On Sun, Mar 2, 2008 at 8:17 PM, Richard Purdie <rpurdie at rpsys.net> wrote:
>  repository which would go to different files in DL_DIR but use the same
>  scm directory. One solution is to override SVNDIR/GITDIR/CVSDIR.
>
bitbake.conf:143:DL_DIR = "${TMPDIR}/downloads"
bitbake.conf:144:CVSDIR = "${DL_DIR}/cvs"
bitbake.conf:145:SVNDIR = "${DL_DIR}/svn"
bitbake.conf:146:GITDIR = "${DL_DIR}/git"

Can we change this into:

DL_DIR = "${TMPDIR}/downloads"
CO_DIR = "${DL_DIR}"
CVSDIR = "${CO_DIR}/cvs"
SVNDIR = "${CO_DIR}/svn"
GITDIR = "${CO_DIR}/git"

So that I can override CO_DIR robustly, even when a fourth revision
control system comes into play?

(CO_DIR as in checkout directory)

Regards,
-- 
Leon




More information about the Openembedded-devel mailing list