20318ebc22
This cleans up a few leftover things after https://github.com/rust-lang-nursery/rust-clippy/pull/3018
9 lines
248 B
Rust
9 lines
248 B
Rust
use std::env;
|
|
|
|
fn main() {
|
|
// Forward the profile to the main compilation
|
|
println!("cargo:rustc-env=PROFILE={}", env::var("PROFILE").unwrap());
|
|
// Don't rebuild even if nothing changed
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
}
|