diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-09-07 20:22:38 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-09-07 20:22:38 +0000 |
commit | 8a00555b71e47ee86e8449a8f44b7e16c3cef1ae (patch) | |
tree | 8df0a58a51d04907dfe964dde36b0f555c87cd5b /classes/base.bbclass | |
parent | 09a497b2fd5df58ac5b9deec9830b3a9bbc6342f (diff) |
base.bbclass: change message about lack of checksums.ini entry for URI to something easier to understand
Diffstat (limited to 'classes/base.bbclass')
-rw-r--r-- | classes/base.bbclass | 4 |
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) } |