diff options
| -rw-r--r-- | bitbake/lib/bb/server/process.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py index 828159ed75..9e5e709f04 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/lib/bb/server/process.py | |||
| @@ -377,11 +377,12 @@ class BitBakeServer(object): | |||
| 377 | if os.path.exists(sockname): | 377 | if os.path.exists(sockname): |
| 378 | os.unlink(sockname) | 378 | os.unlink(sockname) |
| 379 | 379 | ||
| 380 | # Place the log in the builddirectory alongside the lock file | ||
| 381 | logfile = os.path.join(os.path.dirname(self.bitbake_lock.name), "bitbake-cookerdaemon.log") | ||
| 382 | |||
| 380 | self.sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) | 383 | self.sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) |
| 381 | # AF_UNIX has path length issues so chdir here to workaround | 384 | # AF_UNIX has path length issues so chdir here to workaround |
| 382 | cwd = os.getcwd() | 385 | cwd = os.getcwd() |
| 383 | logfile = os.path.join(cwd, "bitbake-cookerdaemon.log") | ||
| 384 | |||
| 385 | try: | 386 | try: |
| 386 | os.chdir(os.path.dirname(sockname)) | 387 | os.chdir(os.path.dirname(sockname)) |
| 387 | self.sock.bind(os.path.basename(sockname)) | 388 | self.sock.bind(os.path.basename(sockname)) |
