We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96b2de5 commit 3d069a3Copy full SHA for 3d069a3
crates/batcher/build.rs
@@ -26,7 +26,7 @@ fn main() {
26
27
go_build.status().expect("Go build failed");
28
29
- println!("cargo:rerun-if-changed={}", GO_SRC);
+ println!("cargo:rerun-if-changed={GO_SRC}");
30
println!(
31
"cargo:rustc-link-search=native={}",
32
out_dir.to_str().unwrap()
@@ -36,5 +36,5 @@ fn main() {
36
println!("cargo:rustc-link-arg=-Wl,--allow-multiple-definition");
37
}
38
39
- println!("cargo:rustc-link-lib=static={}", GO_LIB);
+ println!("cargo:rustc-link-lib=static={GO_LIB}");
40
0 commit comments