Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
Fixes builds where PATH has backslashes (Visual Studio interpets the …
Browse files Browse the repository at this point in the history
…next line as part of the comment)
  • Loading branch information
dino.fizzotti committed Jan 2, 2015
1 parent 21d2dc2 commit 0c9ac1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ms/do_vsproject.pl
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ sub processBatch{
my $var = (split('=',$words[1]))[0];
my $val = substr($line, $ind+1);
$env{$var}=$val;
$function.=tab()."//set $var=$env{$var}\n";
$function.=tab()."//set $var=\"$env{$var}\"\n";
next;
}

Expand Down Expand Up @@ -257,7 +257,7 @@ sub processBatch{
my $var = (split('=',$line))[0];
my $val = substr($line, $ind+1);
$env{$var}=$val;
$function.=tab()."//$var=$env{$var}\n";
$function.=tab()."//$var=\"$env{$var}\"\n";
next;
}
if(index($line,":")!=-1)
Expand Down

0 comments on commit 0c9ac1b

Please sign in to comment.