Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 158059 Details for
Bug 228977
sys-apps/portage-2.2_rc1 emerge/ebuild gets into a tight loop when merging glibc-2.8_p20080602
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
prevent infinite loop in dblink._preserve_libs()
preserve_libs_loop.patch (text/plain), 695 bytes, created by
Zac Medico
on 2008-06-23 01:26:40 UTC
(
hide
)
Description:
prevent infinite loop in dblink._preserve_libs()
Filename:
MIME Type:
Creator:
Zac Medico
Created:
2008-06-23 01:26:40 UTC
Size:
695 bytes
patch
obsolete
>Index: pym/portage/dbapi/vartree.py >=================================================================== >--- pym/portage/dbapi/vartree.py (revision 10761) >+++ pym/portage/dbapi/vartree.py (revision 10762) >@@ -2068,8 +2068,9 @@ > os.symlink(linktarget, os.path.join(srcroot, x.lstrip(os.sep))) > if linktarget[0] != os.sep: > linktarget = os.path.join(os.path.dirname(x), linktarget) >- candidates.add(linktarget) >- candidates_stack.append(linktarget) >+ if linktarget not in candidates: >+ candidates.add(linktarget) >+ candidates_stack.append(linktarget) > else: > shutil.copy2(os.path.join(destroot, x.lstrip(os.sep)), > os.path.join(srcroot, x.lstrip(os.sep)))
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 228977
:
158059
|
158093