diff options
author | Holger Freyther <zecke@selfish.org> | 2006-04-30 10:12:09 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-30 10:12:09 +0000 |
commit | fb482f5c636a163c1eb910275e54c64e3aa03911 (patch) | |
tree | e584431a450956583d13ecb73626f23e72873a39 /conf | |
parent | c50a572061fc33274f16c45e9541705136b5fef2 (diff) |
conf/bitbake.conf:
Plain UPDATE, FETCH and RESUME-COMMAND to not have any value. They
are used by the BitBake fetchers.
e.g. with a broken update_data impl in BitBake cvs used the 'plain'
variable instead the override. This change should make things fail
faster and more obvious
Diffstat (limited to 'conf')
-rw-r--r-- | conf/bitbake.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index 68fbc0a473..77923e8e7f 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -315,12 +315,12 @@ APACHE_MIRROR = "http://www.apache.org/dist" # export SOURCEFORGE_MIRROR = "http://belnet.dl.sourceforge.net/sourceforge" # into your local.conf -FETCHCOMMAND = "" +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}" -RESUMECOMMAND = "" +RESUMECOMMAND = "ERROR, this must be a BitBake bug" RESUMECOMMAND_wget = "/usr/bin/env wget -c -t 5 --passive-ftp -P ${DL_DIR} ${URI}" -UPDATECOMMAND = "" +UPDATECOMMAND = "ERROR, this must be a BitBake bug" UPDATECOMMAND_cvs = "/usr/bin/env cvs -d${CVSROOT} update -d -P ${CVSCOOPTS}" SRCDATE = "${DATE}" |