diff options
-rw-r--r-- | pym/portage_locks.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pym/portage_locks.py b/pym/portage_locks.py index 162cd8fd2..e2772956f 100644 --- a/pym/portage_locks.py +++ b/pym/portage_locks.py @@ -40,7 +40,9 @@ def lockfile(mypath,wantnewlockfile=0,unlinkfile=0): wantnewlockfile = 0 unlinkfile = 0 elif wantnewlockfile: - lockfilename = mypath+".portage_lockfile" + base, tail = os.path.split(mypath) + lockfilename = os.path.join(base, "." + tail + ".portage_lockfile") + del base, tail unlinkfile = 1 else: lockfilename = mypath |