fix syntax error
authorAndrew Dunstan <[email protected]>
Fri, 28 May 2021 13:35:11 +0000 (09:35 -0400)
committerAndrew Dunstan <[email protected]>
Fri, 28 May 2021 13:35:55 +0000 (09:35 -0400)
src/tools/msvc/Solution.pm

index adc7f7e30ac57231483c283d11c3fd27bbdc73ad..711db815d8f8d089afea810ea179385f9cbb84b1 100644 (file)
@@ -814,7 +814,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;
 }