Skip to content

Rollup of 8 pull requests #42185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 25 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a355c67
Use the improved submodule handling
ishitatsuyuki May 18, 2017
ed49d7c
Format bootstrap.py using autopep8
ishitatsuyuki May 19, 2017
8f111f3
bootstrap.py: Filter instead of iteration
ishitatsuyuki May 19, 2017
9ad0dba
remove "much" from unicode diagnostic
euclio May 20, 2017
66237af
Fix building without backtrace feature, which was broken in ca8b754
ids1024 May 21, 2017
f4147e5
Implement requires_synchronized_create() for Redox
ids1024 May 21, 2017
d34aaa1
bootstrap.py: decode to str
ishitatsuyuki May 22, 2017
150d644
rustbuild: split Install out of Dist subcommand
Keruspe May 18, 2017
14b767d
Add example of recursive drop to Drop trait.
Havvy May 22, 2017
ca909c8
Add example of variable declaration drop order to Drop trait.
Havvy May 22, 2017
d7927ff
Add description of how values are dropped to Drop trait.
Havvy May 22, 2017
5f4b0ff
Fix trailing whitespace.
Havvy May 22, 2017
b41b294
Suggested changes by birkenfeld
Havvy May 23, 2017
794e572
Give step_trait a distinct tracking issue from step_by
scottmcm May 23, 2017
9af464b
rustbuild: drop unused macro in tets
Keruspe May 23, 2017
53ae00a
rustbuild: make distcheck depend on dist-plain-source-tarball
Keruspe May 23, 2017
e860655
Remove some needless // gate-test- comments
est31 May 23, 2017
9bf4997
Rollup merge of #42081 - ishitatsuyuki:submodule-better, r=aidanhs
frewsxcv May 24, 2017
7217036
Rollup merge of #42109 - Keruspe:master, r=alexcrichton
frewsxcv May 24, 2017
1b8377d
Rollup merge of #42120 - euclio:unicode, r=arielb1
frewsxcv May 24, 2017
078b253
Rollup merge of #42141 - ids1024:nobacktrace, r=aturon
frewsxcv May 24, 2017
e68d064
Rollup merge of #42142 - ids1024:redox, r=aturon
frewsxcv May 24, 2017
fdceb4e
Rollup merge of #42159 - Havvy:doc-drop, r=steveklabnik
frewsxcv May 24, 2017
247ab06
Rollup merge of #42169 - scottmcm:new-step-trait-issue, r=alexcrichton
frewsxcv May 24, 2017
308cbf3
Rollup merge of #42177 - est31:master, r=Mark-Simulacrum
frewsxcv May 24, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
rustbuild: make distcheck depend on dist-plain-source-tarball
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
  • Loading branch information
Keruspe committed May 23, 2017
commit 53ae00a8ab468072c3c7c5736eb17577de2d37fb
2 changes: 1 addition & 1 deletion src/bootstrap/step.rs
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
.host(true)
.run(move |s| check::docs(build, &s.compiler()));
rules.test("check-distcheck", "distcheck")
.dep(|s| s.name("dist-src"))
.dep(|s| s.name("dist-plain-source-tarball"))
.run(move |_| check::distcheck(build));

rules.build("test-helpers", "src/rt/rust_test_helpers.c")
Expand Down