Unverified Commit 5bd5d389 authored by David Tenty's avatar David Tenty Committed by GitHub
Browse files

Fix rust-fmt

parent 67612fe9
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -94,7 +94,9 @@ fn find_openssl_dir(target: &str) -> OsString {

    // FreeBSD, OpenBSD, and AIX ship with Libre|OpenSSL
    // TODO: see of this is still needed for OpenBSD
    if host == target && (target.contains("freebsd") || target.contains("openbsd") || target.contains("aix")) {
    if host == target
        && (target.contains("freebsd") || target.contains("openbsd") || target.contains("aix"))
    {
        return OsString::from("/usr");
    }