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 | |
parent | 61d414498f07a84516f7abb2981a0dc9b6487f41 (diff) | |
download | openembedded-core-15080afba3e3de81b5e320115bc8159c43022d7c.tar.gz openembedded-core-15080afba3e3de81b5e320115bc8159c43022d7c.tar.bz2 openembedded-core-15080afba3e3de81b5e320115bc8159c43022d7c.zip |
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
-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() { 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) } |