base.bbclass: change message about lack of checksums.ini entry for URI to something...
authorMarcin Juszkiewicz <hrw@openembedded.org>
Fri, 7 Sep 2007 20:22:38 +0000 (20:22 +0000)
committerMarcin Juszkiewicz <hrw@openembedded.org>
Fri, 7 Sep 2007 20:22:38 +0000 (20:22 +0000)
classes/base.bbclass

index d4b327e..999d409 100644 (file)
@@ -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)
 }