diff options
| author | Chris Coulson <chris.coulson@canonical.com> | 2018-04-12 15:01:49 +0100 |
|---|---|---|
| committer | Chris Coulson <chris.coulson@canonical.com> | 2018-04-12 15:01:49 +0100 |
| commit | 6f10146f9f327bfebbae4083d40ffbeb412e3198 (patch) | |
| tree | c0e6f8c07d621da624b117272e6569d95d4ca625 /src/bootstrap | |
| parent | 9afed646451175e24964cc76688293cb87ed718c (diff) | |
| download | rust-6f10146f9f327bfebbae4083d40ffbeb412e3198.tar.gz rust-6f10146f9f327bfebbae4083d40ffbeb412e3198.zip | |
Fix test failure in src/tools/rustdoc-themes when rust.rpath = false
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index c175d2c6901..72995db959a 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -459,7 +459,7 @@ impl Step for RustdocTheme { } fn run(self, builder: &Builder) { - let rustdoc = builder.rustdoc(self.compiler.host); + let rustdoc = builder.out.join("bootstrap/debug/rustdoc"); let mut cmd = builder.tool_cmd(Tool::RustdocTheme); cmd.arg(rustdoc.to_str().unwrap()) .arg(builder.src.join("src/librustdoc/html/static/themes").to_str().unwrap()) |
