diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index b3d6cd9e34..db034b9e83 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -263,6 +263,9 @@ class BBCooker: | |||
263 | self.parsecache_valid = False | 263 | self.parsecache_valid = False |
264 | bb.parse.clear_cache() | 264 | bb.parse.clear_cache() |
265 | return | 265 | return |
266 | if event.pathname.endswith("bitbake-cookerdaemon.log") \ | ||
267 | or event.pathname.endswith("bitbake.lock"): | ||
268 | return | ||
266 | if not event.pathname in self.inotify_modified_files: | 269 | if not event.pathname in self.inotify_modified_files: |
267 | self.inotify_modified_files.append(event.pathname) | 270 | self.inotify_modified_files.append(event.pathname) |
268 | self.parsecache_valid = False | 271 | self.parsecache_valid = False |