diff options
Diffstat (limited to 'bitbake/lib')
-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 318781ba9b..431fc079e4 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
@@ -527,7 +527,7 @@ class Cache(object): | |||
527 | if hasattr(info_array[0], 'file_checksums'): | 527 | if hasattr(info_array[0], 'file_checksums'): |
528 | for _, fl in info_array[0].file_checksums.items(): | 528 | for _, fl in info_array[0].file_checksums.items(): |
529 | for f in fl.split(): | 529 | for f in fl.split(): |
530 | if not os.path.exists(f): | 530 | if not ('*' in f or os.path.exists(f)): |
531 | logger.debug(2, "Cache: %s's file checksum list file %s was removed", | 531 | logger.debug(2, "Cache: %s's file checksum list file %s was removed", |
532 | fn, f) | 532 | fn, f) |
533 | self.remove(fn) | 533 | self.remove(fn) |