diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-06-30 23:08:03 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-06-30 23:08:03 +0000 |
commit | a522a573ad64d702c295764524e5fc7acf3d3b4f (patch) | |
tree | d9054cfdebf42c89c0cb0789e4ea104ebf4c754b | |
parent | c641783adbed6bc6734e9b893292d552a3c9f3e2 (diff) |
bitbake.conf: Add simplified FETCHCMD defitions for new versions of bitbake
-rw-r--r-- | conf/bitbake.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index a86e806fe1..5df7fd0656 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -350,6 +350,10 @@ KERNELORG_MIRROR = "http://kernel.org/" # export DEBIAN_MIRROR = "ftp://ftp.de.debian.org/debian/pool" # into your local.conf +FETCHCMD_svn = "/usr/bin/env svn" +FETCHCMD_cvs = "/usr/bin/env cvs" +FETCHCMD_wget = "/usr/bin/env wget -t 5" + FETCHCOMMAND = "ERROR, this must be a BitBake bug" FETCHCOMMAND_wget = "/usr/bin/env wget -t 5 --passive-ftp -P ${DL_DIR} ${URI}" FETCHCOMMAND_cvs = "/usr/bin/env cvs -d${CVSROOT} co ${CVSCOOPTS} ${CVSMODULE}" |