Skip to content

Commit cb9bb15

Browse files
committed
Fix syntax error in commit 20e99cd.
Per buildfarm.
1 parent b654714 commit cb9bb15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/msvc/MSBuildProject.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ EOF
4747
if (defined($sdkVersion))
4848
{
4949
# remove trailing backslash if necessary.
50-
$sdkVersion, =~ s/\\$//;
50+
$sdkVersion =~ s/\\$//;
5151
print $f <<EOF
5252
<WindowsTargetPlatformVersion>$sdkVersion</WindowsTargetPlatformVersion>
5353
EOF

0 commit comments

Comments
 (0)