Revert "Regenerate ld.so.cache (#1708)"

This reverts commit 53c2c3dbc7.
This commit is contained in:
Raphael Glon 2024-04-08 16:45:34 +02:00
parent ff42d33e99
commit b65beb43d3
No known key found for this signature in database
GPG Key ID: 4D4CC6881E12A0C3

View File

@ -1209,16 +1209,6 @@ fn terminate(process_name: &str, mut process: Child, timeout: Duration) -> io::R
} }
fn main() -> Result<(), LauncherError> { fn main() -> Result<(), LauncherError> {
match Command::new("ldconfig").spawn() {
Ok(_) => {}
Err(err) => {
tracing::warn!(
"Unable to refresh ldconfig cache. Skipping (useless in most cases). Details {:?}",
err
)
}
}
// Pattern match configuration // Pattern match configuration
let args: Args = Args::parse(); let args: Args = Args::parse();