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 fcb15796cc..92e9a3ced7 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -619,7 +619,7 @@ class Cache(NoCache):
619 for f in flist: 619 for f in flist:
620 if not f: 620 if not f:
621 continue 621 continue
622 f, exist = f.split(":") 622 f, exist = f.rsplit(":", 1)
623 if (exist == "True" and not os.path.exists(f)) or (exist == "False" and os.path.exists(f)): 623 if (exist == "True" and not os.path.exists(f)) or (exist == "False" and os.path.exists(f)):
624 self.logger.debug2("%s's file checksum list file %s changed", 624 self.logger.debug2("%s's file checksum list file %s changed",
625 fn, f) 625 fn, f)