]> git.lizzy.rs Git - rust.git/commitdiff
No build.rs for libcore
authorJohn Ericson <Ericson2314@Yahoo.com>
Sat, 4 Jun 2016 21:19:46 +0000 (14:19 -0700)
committerJohn Ericson <Ericson2314@Yahoo.com>
Sat, 4 Jun 2016 22:10:26 +0000 (15:10 -0700)
src/libcore/Cargo.toml
src/libcore/build.rs [deleted file]

index 02fe574b81edd07ddfa66ed5c4474c02570e920b..3b406ac0447f22f7c8a164c337886dddac6468a4 100644 (file)
@@ -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 (file)
index 255a367..0000000
+++ /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")
-}