Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 240293 Details for
Bug 199868
"Text file busy" during merge on some alternative operating systems
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
uh - fix for the previous patch.
portage-2.2.00.14771-busy-paths.patch (text/plain), 625 bytes, created by
Markus Duft (RETIRED)
on 2010-07-27 09:31:24 UTC
(
hide
)
Description:
uh - fix for the previous patch.
Filename:
MIME Type:
Creator:
Markus Duft (RETIRED)
Created:
2010-07-27 09:31:24 UTC
Size:
625 bytes
patch
obsolete
>diff -ru portage.orig/pym/portage/busy.py portage/pym/portage/busy.py >--- portage.orig/pym/portage/busy.py 2010-07-26 16:19:32 +0200 >+++ portage/pym/portage/busy.py 2010-07-26 16:20:31 +0200 >@@ -32,12 +32,12 @@ > > self.cleanBusyFiles() > >- def getDestFilename(self, srcfile): >+ def getDestFilename(self, destdir, srcfile): > """calculate a destination filename based on the srcfile filename.""" > my_fn = ".$busy-" + srcfile + "." > my_num = 0 > >- while os.access(my_fn + str(my_num), os.F_OK): >+ while os.access(os.path.join(destdir, my_fn + str(my_num)), os.F_OK): > my_num += 1 > > return my_fn + str(my_num)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 199868
:
213275
|
240293
|
240455