1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

fix syntax error

This commit is contained in:
Andrew Dunstan
2021-05-28 09:35:11 -04:00
parent abbd70022c
commit 34a65fc63e

View 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;
}