summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r--bitbake/lib/bb/cache.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 22ca6f56e6..22ed3e80be 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -649,18 +649,6 @@ class Cache(object):
649 self.cacheclean = False 649 self.cacheclean = False
650 self.depends_cache[filename] = info_array 650 self.depends_cache[filename] = info_array
651 651
652 def add(self, file_name, data, cacheData, parsed=None):
653 """
654 Save data we need into the cache
655 """
656
657 realfn = virtualfn2realfn(file_name)[0]
658
659 info_array = []
660 for cache_class in self.caches_array:
661 info_array.append(cache_class(realfn, data))
662 self.add_info(file_name, info_array, cacheData, parsed)
663
664class MulticonfigCache(Mapping): 652class MulticonfigCache(Mapping):
665 def __init__(self, databuilder, data_hash, caches_array): 653 def __init__(self, databuilder, data_hash, caches_array):
666 def progress(p): 654 def progress(p):