diff mbox series

fetch: use BPN instead

Message ID 20220815084629.30843-1-mingli.yu@windriver.com
State Accepted, archived
Commit d613e48c07d4b12219270c1359cbf2f390b848dd
Headers show
Series fetch: use BPN instead | expand

Commit Message

Yu, Mingli Aug. 15, 2022, 8:46 a.m. UTC
From: Mingli Yu <mingli.yu@windriver.com>

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

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 lib/bb/fetch2/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py
index 0fb718b2..43d07e56 100644
--- a/lib/bb/fetch2/__init__.py
+++ b/lib/bb/fetch2/__init__.py
@@ -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)