fix syntax error
authorAndrew Dunstan <andrew@dunslane.net>
Fri, 28 May 2021 13:35:11 +0000 (09:35 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Fri, 28 May 2021 13:35:11 +0000 (09:35 -0400)
src/tools/msvc/Solution.pm

index 3ee57c46da58ee348252a10487527c69febee220..a7b8f720b55869e06be7d1bb0d742400948efc55 100644 (file)
@@ -1199,7 +1199,7 @@ sub GetFakeConfigure
        $cfg .= ' --with-perl'          if ($self->{options}->{perl});
        $cfg .= ' --with-python'        if ($self->{options}->{python});
        my $port = $self->{options}->{'--with-pgport'};
-       $cfg .= " --with-pgport=$port" if defined($port)
+       $cfg .= " --with-pgport=$port" if defined($port);
 
        return $cfg;
 }