Commit d69fcb9c authored by Andrew Dunstan's avatar Andrew Dunstan

fix syntax error

parent fb424ae8
...@@ -1199,7 +1199,7 @@ sub GetFakeConfigure ...@@ -1199,7 +1199,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;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment