bootstrap: set correct path for the build-manifest binary

This commit is contained in:
Pietro Albini 2020-10-13 20:37:38 +02:00
parent d65c08e9cc
commit 6091538105
No known key found for this signature in database
GPG Key ID: 3E06ABE80BAAF19C
1 changed files with 1 additions and 1 deletions

View File

@ -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");