about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorEduard-Mihai Burtescu <edy.burt@gmail.com>2016-06-06 06:48:33 +0300
committerEduard-Mihai Burtescu <edy.burt@gmail.com>2016-06-06 06:48:33 +0300
commit324a356d78adc9224add453960f32040278b3d6c (patch)
tree5e05d7089f1510fbb747e176b8b4d20ac04c2b75 /src/libcore
parent594990dbde987b864f2d53bbbccb7941d4e117b2 (diff)
parentbce5383942744e4e5a588b2ee0ed04be3c81ead7 (diff)
downloadrust-324a356d78adc9224add453960f32040278b3d6c.tar.gz
rust-324a356d78adc9224add453960f32040278b3d6c.zip
Rollup merge of #34081 - RustOS-Fork-Holding-Ground:no-core-build-script, r=alexcrichton
No build.rs for libcore

I did a grep and there are no longer any mention of "rustbuild" in core, in `cfg`s or otherwise.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/Cargo.toml1
-rw-r--r--src/libcore/build.rs17
2 files changed, 0 insertions, 18 deletions
diff --git a/src/libcore/Cargo.toml b/src/libcore/Cargo.toml
index 02fe574b81e..3b406ac0447 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 255a367e58b..00000000000
--- 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 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, 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")
-}