diff options
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r-- | bitbake/lib/bb/cache.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index 43091daa26..9a962ecc74 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
@@ -143,8 +143,8 @@ class Cache: | |||
143 | if dep not in self.depends_cache[fn]["__depends"]: | 143 | if dep not in self.depends_cache[fn]["__depends"]: |
144 | self.depends_cache[fn]["__depends"].append(dep) | 144 | self.depends_cache[fn]["__depends"].append(dep) |
145 | 145 | ||
146 | # Make sure BBCLASSEXTEND always makes the cache too | 146 | # Make sure the variants always make it into the cache too |
147 | self.getVar('BBCLASSEXTEND', virtualfn, True) | 147 | self.getVar('__VARIANTS', virtualfn, True) |
148 | 148 | ||
149 | self.depends_cache[virtualfn]["CACHETIMESTAMP"] = bb.parse.cached_mtime(fn) | 149 | self.depends_cache[virtualfn]["CACHETIMESTAMP"] = bb.parse.cached_mtime(fn) |
150 | 150 | ||
@@ -199,7 +199,7 @@ class Cache: | |||
199 | self.cacheValidUpdate(fn) | 199 | self.cacheValidUpdate(fn) |
200 | 200 | ||
201 | if self.cacheValid(fn): | 201 | if self.cacheValid(fn): |
202 | multi = self.getVar('BBCLASSEXTEND', fn, True) | 202 | multi = self.getVar('__VARIANTS', fn, True) |
203 | for cls in (multi or "").split() + [""]: | 203 | for cls in (multi or "").split() + [""]: |
204 | virtualfn = self.realfn2virtual(fn, cls) | 204 | virtualfn = self.realfn2virtual(fn, cls) |
205 | if self.depends_cache[virtualfn]["__SKIPPED"]: | 205 | if self.depends_cache[virtualfn]["__SKIPPED"]: |
@@ -292,7 +292,7 @@ class Cache: | |||
292 | self.clean[fn] = "" | 292 | self.clean[fn] = "" |
293 | 293 | ||
294 | # Mark extended class data as clean too | 294 | # Mark extended class data as clean too |
295 | multi = self.getVar('BBCLASSEXTEND', fn, True) | 295 | multi = self.getVar('__VARIANTS', fn, True) |
296 | for cls in (multi or "").split(): | 296 | for cls in (multi or "").split(): |
297 | virtualfn = self.realfn2virtual(fn, cls) | 297 | virtualfn = self.realfn2virtual(fn, cls) |
298 | self.clean[virtualfn] = "" | 298 | self.clean[virtualfn] = "" |
@@ -443,7 +443,7 @@ class Cache: | |||
443 | 443 | ||
444 | # Touch this to make sure its in the cache | 444 | # Touch this to make sure its in the cache |
445 | self.getVar('__BB_DONT_CACHE', file_name, True) | 445 | self.getVar('__BB_DONT_CACHE', file_name, True) |
446 | self.getVar('BBCLASSEXTEND', file_name, True) | 446 | self.getVar('__VARIANTS', file_name, True) |
447 | 447 | ||
448 | def load_bbfile( self, bbfile , config): | 448 | def load_bbfile( self, bbfile , config): |
449 | """ | 449 | """ |