diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2020-10-13 20:37:38 +0200 |
|---|---|---|
| committer | Pietro Albini <pietro@pietroalbini.org> | 2020-10-13 20:37:38 +0200 |
| commit | 6091538105b78962e782a9c8fe2bebe1457ee4e8 (patch) | |
| tree | 4911372c64dec80947c42a177602dc90540973fd | |
| parent | d65c08e9cc164b7b44de53503fae859a4fafd976 (diff) | |
| download | rust-6091538105b78962e782a9c8fe2bebe1457ee4e8.tar.gz rust-6091538105b78962e782a9c8fe2bebe1457ee4e8.zip | |
bootstrap: set correct path for the build-manifest binary
| -rw-r--r-- | src/bootstrap/dist.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index dd4cf9d5953..1887b805da1 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -2617,7 +2617,7 @@ impl Step for BuildManifest { let image_bin = image.join("bin"); let _ = fs::remove_dir_all(&image); t!(fs::create_dir_all(&image_bin)); - builder.install(&build_manifest, &image_bin.join("build-manifest"), 0o755); + builder.install(&build_manifest, &image_bin, 0o755); // Prepare the overlay. let overlay = tmp.join("build-manifest-overlay"); |
