aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2020-06-12 12:37:01 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-06-12 19:36:20 +0100
commit1f9d2c21db3a1ad2ab13dfebd2f8e9a7c3682ee2 (patch)
treef7660896454eed549e56425e56289775c962b7b9 /lib
parentf2062c41693f9f684bdaf2df0a2a08b7f3871026 (diff)
downloadbitbake-1f9d2c21db3a1ad2ab13dfebd2f8e9a7c3682ee2.tar.gz
bitbake: cache: Fix error message with bad multiconfig
The virtualfn variable is not defined, the filename is what should be shown instead. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index be5ea6a8b..c1e08511b 100644
--- a/lib/bb/cache.py
+++ b/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)