Commit bcf4a22a authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msvcmaker: Fix the code that sets __WINETEST_OUTPUT_DIR so it does not pollute $output_dir.

parent 28c2ebb9
......@@ -627,8 +627,8 @@ sub _generate_dsp($$) {
push @defines2, qw(__WINE_USE_NATIVE_HEADERS);
}
my $output_dir2 = $output_dir;
$output_dir =~ s/\\/\\\\/g;
push @defines2, "__WINETEST_OUTPUT_DIR=\\\"$output_dir\\\"";
$output_dir2 =~ s/\\/\\\\/g;
push @defines2, "__WINETEST_OUTPUT_DIR=\\\"$output_dir2\\\"";
push @defines2, qw(__i386__ _X86_);
if($project eq "msvcrt_test") {
......
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