]> git.lizzy.rs Git - rust.git/commitdiff
Include rustc in the default `./x.py install`
authorJosh Stone <jistone@redhat.com>
Tue, 5 Sep 2017 21:19:22 +0000 (14:19 -0700)
committerJosh Stone <jistone@redhat.com>
Tue, 5 Sep 2017 21:19:22 +0000 (14:19 -0700)
The default install used to include rustc, rust-std, and rust-docs, but
the refactoring in commit 6b3413d825fa6 make rustc only default in
extended builds.  This commit makes rustc installed by default again.

src/bootstrap/install.rs

index 89690e444d1f6d9bfb997d1b26faba7cb29b0cac..608924c9c28d196b623d421a87e185030cbc59d5 100644 (file)
@@ -200,7 +200,7 @@ fn run($sel, $builder: &Builder) {
         builder.ensure(dist::Src);
         install_src(builder, self.stage);
     }, ONLY_BUILD;
-    Rustc, "src/librustc", _config.extended, only_hosts: true, {
+    Rustc, "src/librustc", true, only_hosts: true, {
         builder.ensure(dist::Rustc {
             compiler: builder.compiler(self.stage, self.target),
         });