diff options
-rw-r--r-- | meta/classes/base.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
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() { | |||
484 | try: | 484 | try: |
485 | if not base_chk_file(parser, pn, pv,uri, localpath, d): | 485 | if not base_chk_file(parser, pn, pv,uri, localpath, d): |
486 | if type != "file": | 486 | if type != "file": |
487 | bb.note("%s-%s-%s has no section, not checking URI" % (pn,pv,uri)) | 487 | bb.note("%s-%s: %s has no entry in conf/checksums.ini, not checking URI" % (pn,pv,uri)) |
488 | else: | 488 | else: |
489 | bb.debug("%s-%s-%s has no section, not checking URI" % (pn,pv,uri)) | 489 | bb.debug("%s-%s: %s has no entry in conf/checksums.ini, not checking URI" % (pn,pv,uri)) |
490 | except Exception: | 490 | except Exception: |
491 | raise bb.build.FuncFailed("Checksum of '%s' failed" % uri) | 491 | raise bb.build.FuncFailed("Checksum of '%s' failed" % uri) |
492 | } | 492 | } |