Commit 77fd5aa2 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msvcmaker: The msvcrt tests need '..' in the include path.

parent d0b322b0
...@@ -631,7 +631,7 @@ sub _generate_dsp($$) { ...@@ -631,7 +631,7 @@ sub _generate_dsp($$) {
push @defines2, "__WINETEST_OUTPUT_DIR=\\\"$output_dir\\\""; push @defines2, "__WINETEST_OUTPUT_DIR=\\\"$output_dir\\\"";
push @defines2, qw(__i386__ _X86_); push @defines2, qw(__i386__ _X86_);
if($project =~ /^gdi32_(?:enhmfdrv|mfdrv)$/) { if($project eq "msvcrt_test") {
push @includes, ".."; push @includes, "..";
} }
...@@ -646,11 +646,7 @@ sub _generate_dsp($$) { ...@@ -646,11 +646,7 @@ sub _generate_dsp($$) {
if($wine) { if($wine) {
foreach my $include (@includes) { foreach my $include (@includes) {
if ($include !~ /[\\\"]/) { print OUT " /I \"$include\"";
print OUT " /I \"$include\"";
} else {
print OUT " /I $include";
}
} }
} }
......
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