Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
milesgranger committed Apr 26, 2024
1 parent 2d9a523 commit e642bf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blosc2-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ fn main() {

for subdir in &["lib64", "lib", "bin"] {
let search_path = install_path.join(subdir);
println!("cargo::rustc-link-search={}", search_path.display());
println!("cargo:rustc-link-search={}", search_path.display());
}
}

Expand All @@ -63,7 +63,7 @@ fn main() {
let install_path = Path::new(&prefix);
for subdir in &["lib64", "lib", "bin"] {
let search_path = install_path.join(subdir);
println!("cargo::rustc-link-search={}", search_path.display());
println!("cargo:rustc-link-search={}", search_path.display());
}
}

Expand Down

0 comments on commit e642bf3

Please sign in to comment.