From: Marcin Juszkiewicz Date: Tue, 16 Oct 2007 14:57:43 +0000 (+0000) Subject: base.bbclass: merge checksums.ini warning from OE X-Git-Tag: 2011-1~10531 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=15080afba3e3de81b5e320115bc8159c43022d7c;p=openembedded-core.git base.bbclass: merge checksums.ini warning from OE git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2890 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index ed78c72172..27f031c014 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -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) }