diff options
author | Holger Freyther <ich@tamarin.(none)> | 2009-05-17 05:59:06 +0200 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-02-15 17:07:58 +0000 |
commit | defa54dea07a614c6ca0fe85512ab3d41d5d7edc (patch) | |
tree | eb7f3d424db937ba0ef3dbfb2adcb20ecda42735 | |
parent | f03769280cb8a5f75b975ef4696dd7470d6562b2 (diff) | |
download | ast2050-yocto-poky-defa54dea07a614c6ca0fe85512ab3d41d5d7edc.zip ast2050-yocto-poky-defa54dea07a614c6ca0fe85512ab3d41d5d7edc.tar.gz |
bitbake: [cache] copy instead of deepcopy in sync
We only intend to modify the dict, no need to copy all
elements.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-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 2f1b8fa..43091da 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py @@ -328,7 +328,7 @@ class Cache: version_data['CACHE_VER'] = __cache_version__ version_data['BITBAKE_VER'] = bb.__version__ - cache_data = copy.deepcopy(self.depends_cache) + cache_data = copy.copy(self.depends_cache) for fn in self.depends_cache: if '__BB_DONT_CACHE' in self.depends_cache[fn] and self.depends_cache[fn]['__BB_DONT_CACHE']: bb.msg.debug(2, bb.msg.domain.Cache, "Not caching %s, marked as not cacheable" % fn) |