Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Fix syntax error in commit 20e99cddd.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 25 Jul 2019 18:42:02 +0000 (14:42 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 25 Jul 2019 18:42:02 +0000 (14:42 -0400)
Per buildfarm.

src/tools/msvc/MSBuildProject.pm

index 695d7a8b104e752d5a7cefee33c3a5fd9cb19326..823357c023faffa9fb2500a1059014ccaeda6f32 100644 (file)
@@ -47,7 +47,7 @@ EOF
    if (defined($sdkVersion))
    {
        # remove trailing backslash if necessary.
-       $sdkVersion, =~  s/\\$//;
+       $sdkVersion =~ s/\\$//;
        print $f <<EOF
     <WindowsTargetPlatformVersion>$sdkVersion</WindowsTargetPlatformVersion>
 EOF