From: Marc-Antoine Perennou Date: Thu, 27 Apr 2017 13:05:29 +0000 (+0200) Subject: rustbuild: install rustc after cargo and rls X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=7b1fb8964119e01899869d8a2e74896f82ae4be4;p=rust.git rustbuild: install rustc after cargo and rls This way its files take precedence (e.g. README.md and stuff) Signed-off-by: Marc-Antoine Perennou --- diff --git a/src/bootstrap/install.rs b/src/bootstrap/install.rs index b8dde1df729..c805522fbf5 100644 --- a/src/bootstrap/install.rs +++ b/src/bootstrap/install.rs @@ -55,9 +55,6 @@ pub fn install(build: &Build, stage: u32, host: &str) { stage, target, &prefix, &docdir, &libdir, &mandir, &empty_dir); } - install_sh(&build, "rustc", "rustc", &build.rust_package_vers(), - stage, host, &prefix, &docdir, &libdir, &mandir, &empty_dir); - if build.config.extended { install_sh(&build, "cargo", "cargo", &build.cargo_package_vers(), stage, host, &prefix, &docdir, &libdir, &mandir, &empty_dir); @@ -65,6 +62,9 @@ pub fn install(build: &Build, stage: u32, host: &str) { stage, host, &prefix, &docdir, &libdir, &mandir, &empty_dir); } + install_sh(&build, "rustc", "rustc", &build.rust_package_vers(), + stage, host, &prefix, &docdir, &libdir, &mandir, &empty_dir); + t!(fs::remove_dir_all(&empty_dir)); }