summaryrefslogtreecommitdiff
path: root/classes/base.bbclass
diff options
context:
space:
mode:
authorRod Whitby <rod@whitby.id.au>2007-09-07 21:28:01 +0000
committerRod Whitby <rod@whitby.id.au>2007-09-07 21:28:01 +0000
commite99ec8115d43084aab8db32a7c6e0b362e648f82 (patch)
treeb1cc3de423b8fc6296e4bdd78e6bfd734d4da5bb /classes/base.bbclass
parent6df7b6c8ef449b4d70ff6fce2871ba1bc48ad248 (diff)
parent25eeb065fb156d376960420f1ea7879f3a2880ee (diff)
merge of '76f17964c43f7ddee34e65c3b91d78a68aecd213'
and '965f72e4cde00c3f4d4826ce609b171e77b92e00'
Diffstat (limited to 'classes/base.bbclass')
-rw-r--r--classes/base.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass
index d4b327e266..999d409914 100644
--- a/classes/base.bbclass
+++ b/classes/base.bbclass
@@ -487,9 +487,9 @@ python base_do_fetch() {
try:
if not base_chk_file(parser, pn, pv,uri, localpath, d):
if type != "file":
- bb.note("%s-%s-%s has no section, not checking URI" % (pn,pv,uri))
+ bb.note("%s-%s: %s has no entry in conf/checksums.ini, not checking URI" % (pn,pv,uri))
else:
- bb.debug("%s-%s-%s has no section, not checking URI" % (pn,pv,uri))
+ bb.debug("%s-%s: %s has no entry in conf/checksums.ini, not checking URI" % (pn,pv,uri))
except Exception:
raise bb.build.FuncFailed("Checksum of '%s' failed" % uri)
}