Skip to content

Commit 00a8d7e

Browse files
crackcommrotty
authored andcommitted
Fix rebuilding zmq-sys every time
The build script was split, and the path of `rerun-if-changed` setting injected into cargo was not adjusted.
1 parent cd577c1 commit 00a8d7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zmq-sys/build/vendored.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::env;
22

33
pub fn configure() {
4-
println!("cargo:rerun-if-changed=build.rs");
4+
println!("cargo:rerun-if-changed=build/main.rs");
55
println!("cargo:rerun-if-env-changed=PROFILE");
66

77
let wants_debug = env::var("PROFILE").unwrap() == "debug";

0 commit comments

Comments
 (0)