summaryrefslogtreecommitdiffstats
path: root/lib/bb/cache.py
diff options
context:
space:
mode:
authorChristopher Larson <kergoth@gmail.com>2011-07-19 13:05:53 -0700
committerChristopher Larson <kergoth@gmail.com>2011-07-19 13:06:07 -0700
commit807fb0b3bbad5163fdab24d379c2deba8f0b4f13 (patch)
treea9c067f2a47bcef4b8e3acee2d1dfc8ef4d2a79a /lib/bb/cache.py
parent5c8eeefc79455f058dda8f04cf4c12dc5418e00f (diff)
downloadopenembedded-core-contrib-807fb0b3bbad5163fdab24d379c2deba8f0b4f13.tar.gz
cache: fix remnant broken 'info' reference from recent cache changes
Signed-off-by: Christopher Larson <kergoth@gmail.com>
Diffstat (limited to 'lib/bb/cache.py')
-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 6e152fa0c9..bcadc275ec 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -541,7 +541,7 @@ class Cache(object):
# If any one of the variants is not present, mark as invalid for all
if invalid:
- for cls in info.variants:
+ for cls in info_array[0].variants:
virtualfn = self.realfn2virtual(fn, cls)
if virtualfn in self.clean:
logger.debug(2, "Cache: Removing %s from cache", virtualfn)