Update build.rs

This commit is contained in:
Oliver Schneider 2017-08-09 18:05:34 +02:00 committed by GitHub
parent a6096fbfba
commit 4ce60abd84

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