summaryrefslogtreecommitdiffstats
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:21 +0100
commitcffcfacb747d41304c857b17bfea646e220b2389 (patch)
tree7abd075ea5644a31780a7f478f04058ca4308d8d
parentd613e48c07d4b12219270c1359cbf2f390b848dd (diff)
downloadbitbake-cffcfacb747d41304c857b17bfea646e220b2389.tar.gz
Revert "fetch: use BPN instead"
PN is correct here, bitbake has no knowledge of BPN. This reverts commit d613e48c07d4b12219270c1359cbf2f390b848dd. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/fetch2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py
index 43d07e56d..0fb718b23 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('BPN'), os.path.basename(f), '\n'.join(paths)))
+ "\n%s") % (d.getVar('PN'), os.path.basename(f), '\n'.join(paths)))
return " ".join(filelist)