Skip to content

Commit

Permalink
Merge pull request meh#97 from ccbrown/macos-framework-linking-fix
Browse files Browse the repository at this point in the history
fix framework linking on macos
  • Loading branch information
kornelski authored May 7, 2021
2 parents 45eefed + cf4f34c commit 7a28976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ fn print_pkg_config_libs(statik: bool, lib: &pkg_config::Library) {
println!("cargo:rustc-link-search=framework={}", val.display());
}
for val in &lib.frameworks {
println!("cargo:rustc-link=framework={}", val);
println!("cargo:rustc-link-lib=framework={}", val);
}

for val in &lib.libs {
Expand Down

0 comments on commit 7a28976

Please sign in to comment.