summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 608aff8ad7..bd643ea767 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1724,7 +1724,7 @@ class runQueuePipe():
1724 def __init__(self, pipein, pipeout, d): 1724 def __init__(self, pipein, pipeout, d):
1725 self.input = pipein 1725 self.input = pipein
1726 pipeout.close() 1726 pipeout.close()
1727 fcntl.fcntl(self.input, fcntl.F_SETFL, fcntl.fcntl(self.input, fcntl.F_GETFL) | os.O_NONBLOCK) 1727 bb.utils.nonblockingfd(self.input)
1728 self.queue = "" 1728 self.queue = ""
1729 self.d = d 1729 self.d = d
1730 1730