aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2007-09-07 20:22:38 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2007-09-07 20:22:38 +0000
commit8a00555b71e47ee86e8449a8f44b7e16c3cef1ae (patch)
tree8df0a58a51d04907dfe964dde36b0f555c87cd5b
parent09a497b2fd5df58ac5b9deec9830b3a9bbc6342f (diff)
downloadopenembedded-8a00555b71e47ee86e8449a8f44b7e16c3cef1ae.tar.gz
base.bbclass: change message about lack of checksums.ini entry for URI to something easier to understand
-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)
}