mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 09:32:17 +02:00
Fix another little bug with undefined var from cache
(Bitbake rev: f29ceb22b6a79ff62287a1eb398811fd81ec5c18) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
committed by
Richard Purdie
parent
a964761283
commit
30cef6bade
@@ -197,7 +197,7 @@ class Cache:
|
||||
multi = self.getVar('__VARIANTS', fn, True)
|
||||
for cls in (multi or "").split() + [""]:
|
||||
virtualfn = self.realfn2virtual(fn, cls)
|
||||
if self.depends_cache[virtualfn]["__SKIPPED"]:
|
||||
if self.depends_cache[virtualfn].get("__SKIPPED"):
|
||||
skipped += 1
|
||||
logger.debug(1, "Skipping %s", virtualfn)
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user