summaryrefslogtreecommitdiffstats
path: root/bitbake
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-15 14:55:25 +0100
commit128621161c17fbca908195514e660b2e0d7f2352 (patch)
treeeb829e4d9bb85e957cc29e77a2b55b6fd1df4928 /bitbake
parent1332ac291dd4127af5d80fdeee7c1bdd8f5aa129 (diff)
downloadpoky-128621161c17fbca908195514e660b2e0d7f2352.tar.gz
bitbake: bitbake: cache: Fix error message with bad multiconfig
The virtualfn variable is not defined, the filename is what should be shown instead. (Bitbake rev: 1f9d2c21db3a1ad2ab13dfebd2f8e9a7c3682ee2) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cache.py2
1 files changed, 1 insertions, 1 deletions
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):
727 if self.mc is not None: 727 if self.mc is not None:
728 (fn, cls, mc) = virtualfn2realfn(filename) 728 (fn, cls, mc) = virtualfn2realfn(filename)
729 if mc: 729 if mc:
730 self.logger.error("Unexpected multiconfig %s", virtualfn) 730 self.logger.error("Unexpected multiconfig %s", filename)
731 return 731 return
732 732
733 vfn = realfn2virtual(fn, cls, self.mc) 733 vfn = realfn2virtual(fn, cls, self.mc)