Skip to content

Commit cf91e9b

Browse files
committedJun 8, 2018
Auto merge of #51448 - Mark-Simulacrum:rollup, r=Mark-Simulacrum
Rollup of 13 pull requests Successful merges: - #50143 (Add deprecation lint for duplicated `macro_export`s) - #51099 (Fix Issue 38777) - #51276 (Dedup auto traits in trait objects.) - #51298 (Stabilize unit tests with non-`()` return type) - #51360 (Suggest parentheses when a struct literal needs them) - #51391 (Use spans pointing at the inside of a rustdoc attribute) - #51394 (Use scope tree depths to speed up `nearest_common_ancestor`.) - #51396 (Make the size of Option<NonZero*> a documented guarantee.) - #51401 (Warn on `repr` without hints) - #51412 (Avoid useless Vec clones in pending_obligations().) - #51427 (compiletest: autoremove duplicate .nll.* files (#51204)) - #51436 (Do not require stage 2 compiler for rustdoc) - #51437 (rustbuild: generate full list of dependencies for metadata) Failed merges:
2 parents 8afb894 + 8c5002d commit cf91e9b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1086
-435
lines changed
 

‎src/bootstrap/builder.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -800,10 +800,7 @@ impl<'a> Builder<'a> {
800800
cargo.env("RUSTC_ERROR_FORMAT", error_format);
801801
}
802802
if cmd != "build" && cmd != "check" && want_rustdoc {
803-
cargo.env(
804-
"RUSTDOC_LIBDIR",
805-
self.rustc_libdir(self.compiler(2, self.config.build)),
806-
);
803+
cargo.env("RUSTDOC_LIBDIR", self.sysroot_libdir(compiler, self.config.build));
807804
}
808805

809806
if mode.is_tool() {

‎src/bootstrap/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,8 @@ pub struct Build {
280280
struct Crate {
281281
name: Interned<String>,
282282
version: String,
283-
deps: Vec<Interned<String>>,
283+
deps: HashSet<Interned<String>>,
284+
id: String,
284285
path: PathBuf,
285286
doc_step: String,
286287
build_step: String,

0 commit comments

Comments
 (0)
Please sign in to comment.