diff options
-rw-r--r-- | bitbake/lib/bb/server/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py index 2ebfdfc7e8..3ab793c778 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/lib/bb/server/process.py | |||
@@ -312,7 +312,7 @@ class ProcessServer(multiprocessing.Process): | |||
312 | # Ignore EINTR | 312 | # Ignore EINTR |
313 | return [] | 313 | return [] |
314 | else: | 314 | else: |
315 | return [] | 315 | return select.select(fds,[],[],0)[0] |
316 | 316 | ||
317 | 317 | ||
318 | class ServerCommunicator(): | 318 | class ServerCommunicator(): |