Skip to content

Commit 2897549

Browse files
committed
auto merge of #11249 : brson/rust/no_rustdoc_ng, r=alexcrichton
2 parents 736f5a8 + 14f59e8 commit 2897549

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Diff for: src/driver/driver.rs

-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,4 @@ extern mod this = "rustdoc";
1919
#[cfg(rustc)]
2020
extern mod this = "rustc";
2121

22-
#[cfg(rustdoc_ng)]
23-
extern mod this = "rustdoc_ng";
24-
2522
fn main() { this::main() }

Diff for: src/librustdoc/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ fn rust_input(cratefile: &str, matches: &getopts::Matches) -> Output {
242242
}
243243

244244
// Load all plugins/passes into a PluginManager
245-
let path = matches.opt_str("plugin-path").unwrap_or(~"/tmp/rustdoc_ng/plugins");
245+
let path = matches.opt_str("plugin-path").unwrap_or(~"/tmp/rustdoc/plugins");
246246
let mut pm = plugins::PluginManager::new(Path::new(path));
247247
for pass in passes.iter() {
248248
let plugin = match PASSES.iter().position(|&(p, _, _)| p == *pass) {

0 commit comments

Comments
 (0)