bitbake: fetch: use BPN instead

When checking for the non-existing file, BPN is actually the acutal recipe
name. And we should use BPN for the error message and it also fix the below
test when multilib is enabled.
 $ oe-selftest -r bbtests.BitbakeTests.test_invalid_recipe_src_uri

(Bitbake rev: d613e48c07d4b12219270c1359cbf2f390b848dd)

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Mingli Yu 2022-08-15 16:46:29 +08:00 committed by Richard Purdie
parent af64b9b31b
commit 4ab7125180

View File

@ -1236,7 +1236,7 @@ def get_checksum_file_list(d):
if not found:
bb.fatal(("Unable to get checksum for %s SRC_URI entry %s: file could not be found"
"\nThe following paths were searched:"
"\n%s") % (d.getVar('PN'), os.path.basename(f), '\n'.join(paths)))
"\n%s") % (d.getVar('BPN'), os.path.basename(f), '\n'.join(paths)))
return " ".join(filelist)