Skip to content

Commit ed304d1

Browse files
committed
Fix syntax error in commit 20e99cd.
Per buildfarm.
1 parent cb65b45 commit ed304d1

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
@@ -45,7 +45,7 @@ EOF
4545
if (defined($sdkVersion))
4646
{
4747
# remove trailing backslash if necessary.
48-
$sdkVersion, =~ s/\\$//;
48+
$sdkVersion =~ s/\\$//;
4949
print $f <<EOF
5050
<WindowsTargetPlatformVersion>$sdkVersion</WindowsTargetPlatformVersion>
5151
EOF

0 commit comments

Comments
 (0)