]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/build.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / tools / clippy / build.rs
1 use std::env;
2
3 fn main() {
4 // Forward the profile to the main compilation
5 println!("cargo:rustc-env=PROFILE={}", env::var("PROFILE").unwrap());
6 // Don't rebuild even if nothing changed
7 println!("cargo:rerun-if-changed=build.rs");
8 }