diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-10-16 14:57:43 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-10-16 14:57:43 +0000 |
commit | 15080afba3e3de81b5e320115bc8159c43022d7c (patch) | |
tree | a89ac148da75681cf7a15a8380546841d5ab46d3 /meta/classes | |
parent | 61d414498f07a84516f7abb2981a0dc9b6487f41 (diff) | |
download | poky-15080afba3e3de81b5e320115bc8159c43022d7c.tar.gz |
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
Diffstat (limited to 'meta/classes')
-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 | } |