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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index b819a0c2da..9e0c931a07 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -636,7 +636,7 @@ class Cache(NoCache):
636 # Have to be careful about spaces and colons in filenames 636 # Have to be careful about spaces and colons in filenames
637 flist = self.filelist_regex.split(fl) 637 flist = self.filelist_regex.split(fl)
638 for f in flist: 638 for f in flist:
639 if not f or "*" in f: 639 if not f:
640 continue 640 continue
641 f, exist = f.split(":") 641 f, exist = f.split(":")
642 if (exist == "True" and not os.path.exists(f)) or (exist == "False" and os.path.exists(f)): 642 if (exist == "True" and not os.path.exists(f)) or (exist == "False" and os.path.exists(f)):