diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-04-29 10:39:28 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-05-10 23:41:19 -0700 |
| commit | 8d65591cf249a64bffa14ed49cb196af4eabac3c (patch) | |
| tree | 45a17a4c8bc538307cd7072ddfd7537146ed4bd3 /src/rustc | |
| parent | 80ec1b9f1040fba67846924234167feeb24d1f68 (diff) | |
| download | rust-8d65591cf249a64bffa14ed49cb196af4eabac3c.tar.gz rust-8d65591cf249a64bffa14ed49cb196af4eabac3c.zip | |
rustbuild: Tighten dependencies of build scripts
Ensure that `rerun-if-changed` is printed for all build scripts to ensure that they've all got the right list of dependencies.
Diffstat (limited to 'src/rustc')
| -rw-r--r-- | src/rustc/libc_shim/build.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rustc/libc_shim/build.rs b/src/rustc/libc_shim/build.rs index bc428d69082..546f60482e7 100644 --- a/src/rustc/libc_shim/build.rs +++ b/src/rustc/libc_shim/build.rs @@ -8,8 +8,11 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +#![deny(warnings)] + // See comments in Cargo.toml for why this exists fn main() { println!("cargo:rustc-cfg=stdbuild"); + println!("cargo:rerun-if-changed=build.rs"); } |
