winegcc: Don't add the prefix's include dir using -isystem.
Always use -I, this fixes the include search path if the prefix is set to '/usr'. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46293 Signed-off-by: Andre Heider <a.heider@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
370ffa0d14
commit
9bb21d1135
|
@ -698,7 +698,7 @@ no_compat_defines:
|
|||
strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/wine/msvcrt" : "-I" INCLUDEDIR "/wine/msvcrt" );
|
||||
strarray_add(comp_args, "-D__MSVCRT__");
|
||||
}
|
||||
strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR : "-I" INCLUDEDIR );
|
||||
strarray_add(comp_args, "-I" INCLUDEDIR );
|
||||
strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/wine/windows" : "-I" INCLUDEDIR "/wine/windows" );
|
||||
}
|
||||
else if (opts->wine_objdir)
|
||||
|
|
Loading…
Reference in New Issue