All of lore.kernel.org
 help / color / mirror / Atom feed
* [bitbake-devel][PATCH] bitbake: cache: Fix error message with bad multiconfig
@ 2020-06-12 17:37 Joshua Watt
  0 siblings, 0 replies; only message in thread
From: Joshua Watt @ 2020-06-12 17:37 UTC (permalink / raw)
  To: bitbake-devel; +Cc: Joshua Watt

The virtualfn variable is not defined, the filename is what should be
shown instead.

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 bitbake/lib/bb/cache.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index be5ea6a8bd..c1e08511ba 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -727,7 +727,7 @@ class Cache(NoCache):
         if self.mc is not None:
             (fn, cls, mc) = virtualfn2realfn(filename)
             if mc:
-                self.logger.error("Unexpected multiconfig %s", virtualfn)
+                self.logger.error("Unexpected multiconfig %s", filename)
                 return
 
             vfn = realfn2virtual(fn, cls, self.mc)
-- 
2.26.2


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-06-12 17:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-12 17:37 [bitbake-devel][PATCH] bitbake: cache: Fix error message with bad multiconfig Joshua Watt

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.