mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-06-23 02:56:37 +00:00
Fix glibc detection on Fedora (#2205)
This commit is contained in:
parent
a90dd4569f
commit
bb9211b72c
2 changed files with 37 additions and 11 deletions
|
@ -52,8 +52,10 @@ pub(super) async fn detect_targets(target: String) -> Vec<String> {
|
|||
format!("/lib64/{dirname}/{filename}"),
|
||||
format!("/usr/lib/{dirname}/{filename}"),
|
||||
format!("/usr/lib64/{dirname}/{filename}"),
|
||||
"/usr/lib64/libc.so.6".to_string(),
|
||||
format!("/usr/lib/{dirname}/libc.so.6"),
|
||||
format!("/usr/lib64/{dirname}/libc.so.6"),
|
||||
"/usr/lib64/libc.so".to_string(),
|
||||
format!("/usr/lib/{dirname}/libc.so"),
|
||||
format!("/usr/lib64/{dirname}/libc.so"),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue