summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-01 12:17:57 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-01 12:18:36 +0100
commitc9342278d7571750b7c0b5b0aced6a117d43c749 (patch)
treef0bdde34e3343c959ecfac1340f31ed2387da2cb /bitbake/lib/bb/fetch2/__init__.py
parent1eaf64fbe16d2ceb472623c65c961b36aee33608 (diff)
downloadpoky-c9342278d7571750b7c0b5b0aced6a117d43c749.tar.gz
bitbake: Revert "fetch: use BPN instead"
PN is correct here, bitbake has no knowledge of BPN. This reverts commit d613e48c07d4b12219270c1359cbf2f390b848dd. (Bitbake rev: cffcfacb747d41304c857b17bfea646e220b2389) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/__init__.py')
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 43d07e56d3..0fb718b23e 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -1236,7 +1236,7 @@ def get_checksum_file_list(d):
1236 if not found: 1236 if not found:
1237 bb.fatal(("Unable to get checksum for %s SRC_URI entry %s: file could not be found" 1237 bb.fatal(("Unable to get checksum for %s SRC_URI entry %s: file could not be found"
1238 "\nThe following paths were searched:" 1238 "\nThe following paths were searched:"
1239 "\n%s") % (d.getVar('BPN'), os.path.basename(f), '\n'.join(paths))) 1239 "\n%s") % (d.getVar('PN'), os.path.basename(f), '\n'.join(paths)))
1240 1240
1241 return " ".join(filelist) 1241 return " ".join(filelist)
1242 1242