Commit de68bc3b authored by Bernhard Loos's avatar Bernhard Loos Committed by Alexandre Julliard

winegcc: Support a trailing / in paths to winebuild.

parent 9c2288fc
......@@ -1326,6 +1326,7 @@ int main(int argc, char **argv)
{
case 'B':
str = strdup(option_arg);
if (strendswith(str, "/")) str[strlen(str) - 1] = 0;
if (strendswith(str, "/tools/winebuild"))
{
char *objdir = strdup(str);
......@@ -1334,7 +1335,6 @@ int main(int argc, char **argv)
/* don't pass it to the compiler, this generates warnings */
raw_compiler_arg = raw_linker_arg = 0;
}
if (strendswith(str, "/")) str[strlen(str) - 1] = 0;
if (!opts.prefix) opts.prefix = strarray_alloc();
strarray_add(opts.prefix, str);
break;
......
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