Commit 7d7562d7 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winegcc: Add detection for --param options.

parent 88a01618
......@@ -1189,6 +1189,10 @@ int main(int argc, char **argv)
if (strcmp("-framework", argv[i]) == 0)
next_is_arg = 1;
break;
case '-':
if (strcmp("--param", argv[i]) == 0)
next_is_arg = 1;
break;
}
if (next_is_arg) option_arg = argv[i+1];
......
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