Merge pull request #295 from solson/oli-obk-patch-2

Don't rebuild miri even if nothing changed
This commit is contained in:
Ralf Jung
2017-08-09 12:54:07 -07:00
committed by GitHub
+2
View File
@@ -3,4 +3,6 @@
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");
}