diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py index 973bc45251..4d3d1a4308 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/lib/bb/server/process.py @@ -270,7 +270,7 @@ class ProcessServer(): lock = None while not lock and i < 30: time.sleep(0.1) - _, lock = bb.utils.lockfile(lockfile, shared=False, retry=False, block=False) + lock = bb.utils.lockfile(lockfile, shared=False, retry=False, block=False) i += 1 if lock: # We hold the lock so we can remove the file (hide stale pid data)