diff --git a/src/libcore/Cargo.toml b/src/libcore/Cargo.toml index 02fe574b81edd..3b406ac0447f2 100644 --- a/src/libcore/Cargo.toml +++ b/src/libcore/Cargo.toml @@ -2,7 +2,6 @@ authors = ["The Rust Project Developers"] name = "core" version = "0.0.0" -build = "build.rs" [lib] name = "core" diff --git a/src/libcore/build.rs b/src/libcore/build.rs deleted file mode 100644 index 255a367e58b45..0000000000000 --- a/src/libcore/build.rs +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright 2016 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - -#![deny(warnings)] - -fn main() { - // Remove this whenever snapshots and rustbuild nightlies are synced. - println!("cargo:rustc-cfg=cargobuild"); - println!("cargo:rerun-if-changed=build.rs") -}