winegcc: Add detection for --param options.

This commit is contained in:
André Hentschel 2010-06-15 21:30:01 +02:00 committed by Alexandre Julliard
parent 88a016184d
commit 7d7562d739
1 changed files with 4 additions and 0 deletions

View File

@ -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];