Skip to content

Commit 758868c

Browse files
committed
Return .efi extension for EFI executable
Originally part of #100316 Signed-off-by: Ayush Singh <ayushsingh1325@gmail.com>
1 parent 57d3c58 commit 758868c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/bootstrap/util.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,13 @@ pub use t;
4444
/// Given an executable called `name`, return the filename for the
4545
/// executable for a particular target.
4646
pub fn exe(name: &str, target: TargetSelection) -> String {
47-
if target.contains("windows") { format!("{}.exe", name) } else { name.to_string() }
47+
if target.contains("windows") {
48+
format!("{}.exe", name)
49+
} else if target.contains("uefi") {
50+
format!("{}.efi", name)
51+
} else {
52+
name.to_string()
53+
}
4854
}
4955

5056
/// Returns `true` if the file name given looks like a dynamic library.

0 commit comments

Comments
 (0)