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
commit 65a31317a4

View file

@ -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");
}