]> code.ossystems Code Review - openembedded-core.git/commitdiff
base.bbclass: merge checksums.ini warning from OE
authorMarcin Juszkiewicz <hrw@openedhand.com>
Tue, 16 Oct 2007 14:57:43 +0000 (14:57 +0000)
committerMarcin Juszkiewicz <hrw@openedhand.com>
Tue, 16 Oct 2007 14:57:43 +0000 (14:57 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2890 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/classes/base.bbclass

index ed78c721724245da5f9dded26402a403e3b4e11c..27f031c014e40cd4d51b1e361c6878d3dd1fe2a9 100644 (file)
@@ -484,9 +484,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)
 }