Skip to content

Commit

Permalink
Rollup merge of rust-lang#44353 - cuviper:install-rustc, r=Mark-Simul…
Browse files Browse the repository at this point in the history
…acrum

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 6b3413d make rustc only default in
extended builds.  This commit makes rustc installed by default again.
  • Loading branch information
Mark-Simulacrum committed Sep 7, 2017
2 parents b0929aa + 110efe2 commit eba44f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/install.rs
Expand Up @@ -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),
});
Expand Down

0 comments on commit eba44f1

Please sign in to comment.