Merge pull request #920 from monwarez/fix-fixup-freebsd-link-like-openbsd

Fix linking on FreeBSD
This commit is contained in:
Cobrand
2019-09-29 12:06:14 +00:00
committed by GitHub
+1 -1
View File
@@ -1,4 +1,4 @@
fn main() {
#[cfg(target_os="openbsd")]
#[cfg(any(target_os="openbsd", target_os="freebsd"))]
println!(r"cargo:rustc-link-search=/usr/local/lib");
}