fix syntax error

This commit is contained in:
Andrew Dunstan 2021-05-28 09:35:11 -04:00
parent c828a7246e
commit bb18bc2249
No known key found for this signature in database
GPG Key ID: 99FA7FCB59FC3B81

View File

@ -1173,7 +1173,7 @@ sub GetFakeConfigure
$cfg .= ' --with-perl' if ($self->{options}->{perl}); $cfg .= ' --with-perl' if ($self->{options}->{perl});
$cfg .= ' --with-python' if ($self->{options}->{python}); $cfg .= ' --with-python' if ($self->{options}->{python});
my $port = $self->{options}->{'--with-pgport'}; my $port = $self->{options}->{'--with-pgport'};
$cfg .= " --with-pgport=$port" if defined($port) $cfg .= " --with-pgport=$port" if defined($port);
return $cfg; return $cfg;
} }