diff options
author | Leon Woestenberg <leon.woestenberg@gmail.com> | 2008-03-09 21:08:57 +0000 |
---|---|---|
committer | Leon Woestenberg <leon.woestenberg@gmail.com> | 2008-03-09 21:08:57 +0000 |
commit | 8747162abd789bff370039952d12fa8ee23074d1 (patch) | |
tree | 8b7aae6f6ade24d15fd4bc8aee9d9f638d323482 /conf/bitbake.conf | |
parent | 624720a6326cd2123c9f0f6d526c1d7c2d93645e (diff) |
bitbake.conf: Introduce CO_DIR, defaults to DL_DIR, for a user-overridable checkout dir.
Diffstat (limited to 'conf/bitbake.conf')
-rw-r--r-- | conf/bitbake.conf | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index c86cda5040..226f05b944 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -203,10 +203,11 @@ FILESDIR = "${@bb.which(bb.data.getVar('FILESPATH', d, 1), '.')}" TMPDIR = "${TOPDIR}/tmp" CACHE = "${TMPDIR}/cache${@['', '/' + str(bb.data.getVar('MACHINE', d, 1))][bool(bb.data.getVar('MACHINE', d, 1))]}" -CVSDIR = "${DL_DIR}/cvs" -SVNDIR = "${DL_DIR}/svn" -GITDIR = "${DL_DIR}/git" -BZRDIR = "${DL_DIR}/bzr" +CO_DIR = "${DL_DIR}" +CVSDIR = "${CO_DIR}/cvs" +SVNDIR = "${CO_DIR}/svn" +GITDIR = "${CO_DIR}/git" +BZRDIR = "${CO_DIR}/bzr" STAMP = "${TMPDIR}/stamps/${PF}" WORKDIR = "${TMPDIR}/work/${PF}" |