From: Zac Medico Date: Fri, 8 Dec 2006 01:15:06 +0000 (-0000) Subject: Make all lock files hidden for bug #142369. X-Git-Tag: v2.1.2~366 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ce44ea3e914098a52bc0d1d995e71661659e77ca;p=portage.git Make all lock files hidden for bug #142369. svn path=/main/trunk/; revision=5214 --- 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