diff options
| author | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-09-06 18:28:04 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-06 18:28:04 -0600 |
| commit | eba44f10f9f023ff71152805d4e6d1318964fd0e (patch) | |
| tree | c5a2651ed0dcd413efeebeac164fba4ee32d1400 /src/bootstrap | |
| parent | b0929aadadaf4cb46d5a7731cca63369f088728a (diff) | |
| parent | 110efe25fae60570c00e00d4c6d609f3f9666fb3 (diff) | |
| download | rust-eba44f10f9f023ff71152805d4e6d1318964fd0e.tar.gz rust-eba44f10f9f023ff71152805d4e6d1318964fd0e.zip | |
Rollup merge of #44353 - cuviper:install-rustc, r=Mark-Simulacrum
Include rustc in the default `./x.py install` 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.
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/install.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/install.rs b/src/bootstrap/install.rs index 89690e444d1..608924c9c28 100644 --- a/src/bootstrap/install.rs +++ b/src/bootstrap/install.rs @@ -200,7 +200,7 @@ install!((self, builder, _config), 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), }); |
