Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 634346 Details for
Bug 635290
app-portage/gentoolkit: eclean does not rm symlinks
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Simple symlink rm patch
clean_symlinks.patch (text/plain), 541 bytes, created by
Joakim Tjernlund
on 2020-04-24 08:53:28 UTC
(
hide
)
Description:
Simple symlink rm patch
Filename:
MIME Type:
Creator:
Joakim Tjernlund
Created:
2020-04-24 08:53:28 UTC
Size:
541 bytes
patch
obsolete
>--- ./pym/gentoolkit/eclean/search.py.org 2020-04-24 10:22:57.685247466 +0200 >+++ ./pym/gentoolkit/eclean/search.py 2020-04-24 10:29:12.476149003 +0200 >@@ -200,7 +200,8 @@ > def _isreg_check_(file_stat, file): > """check if file is a regular file.""" > is_reg_file = stat.S_ISREG(file_stat[stat.ST_MODE]) >- return not is_reg_file, is_reg_file >+ is_lnk_file = stat.S_ISLNK(file_stat[stat.ST_MODE]) >+ return not (is_reg_file or is_lnk_file), is_reg_file or is_lnk_file > > @staticmethod > def _size_check_(size_limit, file_stat, file):
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 635290
: 634346