Skip to content

Commit

Permalink
fix: Reverse default paths list (eclipse-zenoh#825)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzypixelz authored Mar 14, 2024
1 parent 61838d5 commit 65e0fb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commons/zenoh-util/src/std_only/lib_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ zconfigurable! {
/// The libraries suffix for the current platform (`".dll"` or `".so"` or `".dylib"`...)
pub static ref LIB_SUFFIX: String = DLL_SUFFIX.to_string();
/// The default list of paths where to search for libraries to load
pub static ref LIB_DEFAULT_SEARCH_PATHS: String = "/usr/local/lib:/usr/lib:/opt/homebrew/lib:~/.zenoh/lib:.".to_string();
pub static ref LIB_DEFAULT_SEARCH_PATHS: String = ".:~/.zenoh/lib:/opt/homebrew/lib:/usr/local/lib:/usr/lib".to_string();
}

/// LibLoader allows search for librairies and to load them.
Expand Down

0 comments on commit 65e0fb7

Please sign in to comment.