summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
authorOliver Lang <quantenkeks@gmail.com>2022-10-18 19:46:11 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-10-25 13:58:49 +0100
commitf21dff5b8932b45243b629f035b978fc224bed3e (patch)
tree23690acdc8befb7e86a348bc376ba10bd51c9e0c /bitbake/lib/bb/cooker.py
parent5724847549bafbfaa15c9b5db7d63f41994831cd (diff)
downloadpoky-f21dff5b8932b45243b629f035b978fc224bed3e.tar.gz
bitbake: cooker: fix a typo
(Bitbake rev: cf23612f4e8946b9ed4c9f87b451f32b8c471df2) Signed-off-by: Oliver Lang <quantenkeks@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 32a529f0f9..1da2f03197 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -250,7 +250,7 @@ class BBCooker:
250 def process_inotify_updates(self): 250 def process_inotify_updates(self):
251 for n in [self.confignotifier, self.notifier]: 251 for n in [self.confignotifier, self.notifier]:
252 if n and n.check_events(timeout=0): 252 if n and n.check_events(timeout=0):
253 # read notified events and enqeue them 253 # read notified events and enqueue them
254 n.read_events() 254 n.read_events()
255 n.process_events() 255 n.process_events()
256 256