aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2024-05-08 21:57:50 -0700
committerDavid Tolnay <dtolnay@gmail.com>2024-05-08 21:57:50 -0700
commite0036250e2fc8e08855a7d74167c0127843f0e73 (patch)
tree18c887f6c1b22f3a52c197ea42cfe39d03faf6f4
parent76ce6881a5e57d4db75a0ecd5a0144f994c3efc2 (diff)
downloadremain-upstream-master.tar.gz
Skip rerunning build script on library code changesupstream-master
-rw-r--r--build.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/build.rs b/build.rs
index 113f8a0..deee04c 100644
--- a/build.rs
+++ b/build.rs
@@ -1,6 +1,7 @@
fn main() {
// Warning: build.rs is not published to crates.io.
+ println!("cargo:rerun-if-changed=build.rs");
println!("cargo:rustc-cfg=check_cfg");
println!("cargo:rustc-check-cfg=cfg(check_cfg)");
println!("cargo:rustc-check-cfg=cfg(remain_stable_testing)");