summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/server/process.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/server/process.py')
-rw-r--r--bitbake/lib/bb/server/process.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index ed930c61f4..0cae41cf86 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -452,6 +452,9 @@ def connectProcessServer(sockname, featureset):
452 # AF_UNIX has path length issues so chdir here to workaround 452 # AF_UNIX has path length issues so chdir here to workaround
453 cwd = os.getcwd() 453 cwd = os.getcwd()
454 454
455 readfd = writefd = readfd1 = writefd1 = readfd2 = writefd2 = None
456 eq = command_chan_recv = command_chan = None
457
455 try: 458 try:
456 try: 459 try:
457 os.chdir(os.path.dirname(sockname)) 460 os.chdir(os.path.dirname(sockname))
@@ -459,9 +462,6 @@ def connectProcessServer(sockname, featureset):
459 finally: 462 finally:
460 os.chdir(cwd) 463 os.chdir(cwd)
461 464
462 readfd = writefd = readfd1 = writefd1 = readfd2 = writefd2 = None
463 eq = command_chan_recv = command_chan = None
464
465 # Send an fd for the remote to write events to 465 # Send an fd for the remote to write events to
466 readfd, writefd = os.pipe() 466 readfd, writefd = os.pipe()
467 eq = BBUIEventQueue(readfd) 467 eq = BBUIEventQueue(readfd)