]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
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:36:10 +0000 (09:36 -0400)
src/tools/msvc/Solution.pm

index fdfcbb73dd766a88254c70d1b8986ca01877d84c..002546fec9cdcfbc77c5b510ba5cfaa83abf4b66 100644 (file)
@@ -791,7 +791,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;
 }