Commit b12ad3ad authored by Alexandre Julliard's avatar Alexandre Julliard

output_name already contains .exe extension, don't add it again for -F

option.
parent 81887909
......@@ -532,7 +532,7 @@ static void build(struct options* opts)
if (!opts->shared)
{
strarray_add(spec_args, "-F");
strarray_add(spec_args, strmake("%s.exe", output_name));
strarray_add(spec_args, output_name);
strarray_add(spec_args, "--subsystem");
strarray_add(spec_args, opts->gui_app ? "windows" : "console");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment