diff options
author | Christopher Larson <kergoth@gmail.com> | 2011-07-19 13:05:53 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-21 11:09:46 +0100 |
commit | 9070e745c00600f909e58b4f7b99c5d32c8fdb30 (patch) | |
tree | 44e960977e8ef6a42008dca24e37281e8f87dd20 /bitbake/lib/bb/cache.py | |
parent | 7170fe0f087ad73ba7b1646233e7319d465d5bbe (diff) | |
download | poky-9070e745c00600f909e58b4f7b99c5d32c8fdb30.tar.gz |
cache: fix remnant broken 'info' reference from recent cache changes
(Bitbake rev: 807fb0b3bbad5163fdab24d379c2deba8f0b4f13)
Signed-off-by: Christopher Larson <kergoth@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r-- | bitbake/lib/bb/cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index 6e152fa0c9..bcadc275ec 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
@@ -541,7 +541,7 @@ class Cache(object): | |||
541 | 541 | ||
542 | # If any one of the variants is not present, mark as invalid for all | 542 | # If any one of the variants is not present, mark as invalid for all |
543 | if invalid: | 543 | if invalid: |
544 | for cls in info.variants: | 544 | for cls in info_array[0].variants: |
545 | virtualfn = self.realfn2virtual(fn, cls) | 545 | virtualfn = self.realfn2virtual(fn, cls) |
546 | if virtualfn in self.clean: | 546 | if virtualfn in self.clean: |
547 | logger.debug(2, "Cache: Removing %s from cache", virtualfn) | 547 | logger.debug(2, "Cache: Removing %s from cache", virtualfn) |