Skip to content

Commit 26415b3

Browse files
committed
Don't create .msi installer for gnullvm hosts
WIX toolset works only on Windows hosts and we need to boostrap this host.
1 parent 00b5262 commit 26415b3

File tree

1 file changed

+1
-1
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/build_steps/dist.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1681,7 +1681,7 @@ impl Step for Extended {
16811681
cmd.run(builder);
16821682
}
16831683

1684-
if target.is_windows() {
1684+
if target.is_windows() && self.host.is_windows() {
16851685
let exe = tmp.join("exe");
16861686
let _ = fs::remove_dir_all(&exe);
16871687

0 commit comments

Comments
 (0)