From: Marcin Juszkiewicz Date: Fri, 7 Sep 2007 20:22:38 +0000 (+0000) Subject: base.bbclass: change message about lack of checksums.ini entry for URI to something... X-Git-Tag: Release-2010-05/1~8696^2~7 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a00555b71e47ee86e8449a8f44b7e16c3cef1ae;p=openembedded.git base.bbclass: change message about lack of checksums.ini entry for URI to something easier to understand --- 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) }