bitbake.conf: Introduce CO_DIR, defaults to DL_DIR, for a user-overridable checkout...
authorLeon Woestenberg <leon.woestenberg@gmail.com>
Sun, 9 Mar 2008 21:08:57 +0000 (21:08 +0000)
committerLeon Woestenberg <leon.woestenberg@gmail.com>
Sun, 9 Mar 2008 21:08:57 +0000 (21:08 +0000)
conf/bitbake.conf

index c86cda5..226f05b 100644 (file)
@@ -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}"