Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e457cbd
Use suggestions instead of notes ref mismatches
estebank Nov 25, 2017
f9bbcf9
Update compiler-builtins and use it the 128-bit lowering MIR test
scottmcm Nov 25, 2017
c80fee2
Remove the unneeded #![feature(lang_items)]s
scottmcm Nov 27, 2017
235de09
make coercions to `!` in unreachable code a hard error
arielb1 Nov 8, 2017
677381a
On type mismatch error highlight `&` when type matches
estebank Nov 28, 2017
658ea38
rustc_llvm: remove stale references
tamird Nov 26, 2017
9067d97
rustc_llvm: use cc::Build::define
tamird Nov 26, 2017
94d02b8
*: strip calls to cc::Build::compile
tamird Nov 26, 2017
dfa6c25
Fix hygiene bug.
jseyfried Nov 28, 2017
89dc8ae
incr.comp.: Remove an unnecessary HIR access which enables hashing sp…
michaelwoerister Nov 29, 2017
02808f1
Include lifetime on highlighted ref type mismatch
estebank Nov 29, 2017
b444843
rustdoc: Fix issues with cross-crate inlined associated items
ollie27 Nov 29, 2017
326eb79
rustbuild: Fix a typo with the Cargo book
alexcrichton Nov 29, 2017
21228a8
Remove librustdoc dependency on env_logger
Aaron1011 Nov 29, 2017
8ae7017
Rollup merge of #45880 - arielb1:never-coerce, r=nikomatsakis
Nov 30, 2017
bcfab94
Rollup merge of #46256 - estebank:suggest-deref, r=arielb1
Nov 30, 2017
b54f43a
Rollup merge of #46280 - tamird:remove-old-refs, r=alexcrichton
Nov 30, 2017
be51c4d
Rollup merge of #46290 - scottmcm:i128-from-compiler-builtins, r=nagisa
Nov 30, 2017
cfb8e76
Rollup merge of #46343 - jseyfried:fix_hygiene_bug, r=nrc
Nov 30, 2017
f40088a
Rollup merge of #46349 - estebank:highlight-ref, r=arielb1
Nov 30, 2017
e5d4a7a
Rollup merge of #46368 - michaelwoerister:incr-comp-type-debuginfo-sp…
Nov 30, 2017
8f05a4d
Rollup merge of #46384 - ollie27:rustdoc_inline_assoc, r=QuietMisdreavus
Nov 30, 2017
82b773c
Rollup merge of #46385 - alexcrichton:fix-cargo-book, r=Mark-Simulacrum
Nov 30, 2017
06bfd29
Rollup merge of #46386 - Aaron1011:fix_rustdoc_log, r=Mark-Simulacrum
Nov 30, 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: Fix a typo with the Cargo book
The usage of `Path::new` prevented out-of-tree builds (like the bots do) from
working by accident!

Closes #46195
  • Loading branch information
alexcrichton committed Nov 29, 2017
commit 326eb79cf61a4ff22b10467d60330417294b91dd
2 changes: 1 addition & 1 deletion src/bootstrap/doc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ impl Step for CargoBook {

let target = self.target;
let name = self.name;
let src = PathBuf::from("src/tools/cargo/src/doc/book");
let src = build.src.join("src/tools/cargo/src/doc/book");

let out = build.doc_out(target);
t!(fs::create_dir_all(&out));
Expand Down