about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@Yahoo.com>2016-06-04 14:19:46 -0700
committerJohn Ericson <Ericson2314@Yahoo.com>2016-06-04 15:10:26 -0700
commitbce5383942744e4e5a588b2ee0ed04be3c81ead7 (patch)
treecc5c8c2448ed8b0927ca4f8e4200f8d48d0e0c4b /src/libcore
parent382ab92ceedc258e794c1a95aef21d3be3fa76c4 (diff)
downloadrust-bce5383942744e4e5a588b2ee0ed04be3c81ead7.tar.gz
rust-bce5383942744e4e5a588b2ee0ed04be3c81ead7.zip
No build.rs for libcore
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")
-}