winegcc: Make condition easier to read and look like the statement after the block.

oldstable
André Hentschel 2010-03-24 20:16:27 +01:00 committed by Alexandre Julliard
parent 621694efcd
commit 6c8af38638
1 changed files with 1 additions and 2 deletions

View File

@ -441,8 +441,7 @@ no_compat_defines:
{
if (opts->use_msvcrt)
{
if (gcc_defs) strarray_add(comp_args, "-isystem" INCLUDEDIR "/msvcrt");
else strarray_add(comp_args, "-I" INCLUDEDIR "/msvcrt");
strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/msvcrt" : "-I" INCLUDEDIR "/msvcrt" );
strarray_add(comp_args, "-D__MSVCRT__");
}
strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/windows" : "-I" INCLUDEDIR "/windows" );