From: Andrew Dunstan Date: Fri, 28 May 2021 13:35:11 +0000 (-0400) Subject: fix syntax error X-Git-Tag: REL_11_13~128 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a44a2b9acfdcff3ba12eea7b6c10b8c1b6182e3f;p=thirdparty%2Fpostgresql.git fix syntax error --- diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index 80bc7439c9f..9e5eb3dde90 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -865,7 +865,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; }