about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Schneider <oli-obk@users.noreply.github.com>2017-08-09 18:05:34 +0200
committerGitHub <noreply@github.com>2017-08-09 18:05:34 +0200
commit4ce60abd84f0458bb011f38774670acf06a44f4c (patch)
treef1fa7446f61d328aa5592222218dee9fb8f593a4
parenta6096fbfba1042d1f4ad3b7c7144692d1286f71a (diff)
downloadrust-4ce60abd84f0458bb011f38774670acf06a44f4c.tar.gz
rust-4ce60abd84f0458bb011f38774670acf06a44f4c.zip
Update build.rs
-rw-r--r--build.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.rs b/build.rs
index 86ccf3cda1a..2f74f7f4f61 100644
--- a/build.rs
+++ b/build.rs
@@ -3,4 +3,6 @@ use std::env;
 fn main() {
     // Forward the profile to the main compilation
     println!("cargo:rustc-env=PROFILE={}", env::var("PROFILE").unwrap());
+    // Don't rebuild miri even if nothing changed
+    println!("cargo:rerun-if-changed=build.rs");
 }