mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
fix syntax error
This commit is contained in:
parent
c828a7246e
commit
bb18bc2249
1 changed files with 1 additions and 1 deletions
|
|
@ -1173,7 +1173,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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue