We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e819a39 commit 34a775dCopy full SHA for 34a775d
nginx-sys/build/main.rs
@@ -70,6 +70,14 @@ fn main() -> Result<(), BoxError> {
70
println!("cargo:rerun-if-changed=build/wrapper.h");
71
72
let nginx = NginxSource::from_env();
73
+ println!(
74
+ "cargo:rerun-if-changed={}",
75
+ nginx.build_dir.join("Makefile").to_string_lossy()
76
+ );
77
78
79
+ nginx.build_dir.join("ngx_auto_config.h").to_string_lossy()
80
81
// Read autoconf generated makefile for NGINX and generate Rust bindings based on its includes
82
generate_binding(&nginx);
83
Ok(())
0 commit comments