All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fetch2: include PV in 'Unable to get checksum for SRC_URI entry' warnings
@ 2016-03-10 16:15 Andre McCurdy
  2016-03-10 16:30 ` Richard Purdie
  2016-03-10 17:03 ` Martin Jansa
  0 siblings, 2 replies; 6+ messages in thread
From: Andre McCurdy @ 2016-03-10 16:15 UTC (permalink / raw)
  To: bitbake-devel

Referencing PN only is ambiguous if multiple versions of a recipe are
present.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 lib/bb/fetch2/__init__.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py
index f86014c..124420d 100644
--- a/lib/bb/fetch2/__init__.py
+++ b/lib/bb/fetch2/__init__.py
@@ -1102,9 +1102,9 @@ def get_checksum_file_list(d):
                 if f.startswith(dl_dir):
                     # The local fetcher's behaviour is to return a path under DL_DIR if it couldn't find the file anywhere else
                     if os.path.exists(f):
-                        bb.warn("Getting checksum for %s SRC_URI entry %s: file not found except in DL_DIR" % (d.getVar('PN', True), os.path.basename(f)))
+                        bb.warn("Getting checksum for %s SRC_URI entry %s: file not found except in DL_DIR" % (d.getVar('P', True), os.path.basename(f)))
                     else:
-                        bb.warn("Unable to get checksum for %s SRC_URI entry %s: file could not be found" % (d.getVar('PN', True), os.path.basename(f)))
+                        bb.warn("Unable to get checksum for %s SRC_URI entry %s: file could not be found" % (d.getVar('P', True), os.path.basename(f)))
                 filelist.append(f + ":" + str(os.path.exists(f)))
 
     return " ".join(filelist)
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-03-10 18:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-10 16:15 [PATCH] fetch2: include PV in 'Unable to get checksum for SRC_URI entry' warnings Andre McCurdy
2016-03-10 16:30 ` Richard Purdie
2016-03-10 17:01   ` Andre McCurdy
2016-03-10 17:03 ` Martin Jansa
2016-03-10 17:38   ` Andre McCurdy
2016-03-10 18:10     ` Christopher Larson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.