aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2021-05-28 09:35:11 -0400
committerAndrew Dunstan <andrew@dunslane.net>2021-05-28 09:35:11 -0400
commitd69fcb9caef1ac1f38241645d4fb9f7e0ce02a70 (patch)
treed8d8c44f1f19bbaae044a9f75e544a5ec4cf936f
parentfb424ae85f6b1e32e545f13902d3ba3429be44df (diff)
downloadpostgresql-d69fcb9caef1ac1f38241645d4fb9f7e0ce02a70.tar.gz
postgresql-d69fcb9caef1ac1f38241645d4fb9f7e0ce02a70.zip
fix syntax error
-rw-r--r--src/tools/msvc/Solution.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm
index 3ee57c46da5..a7b8f720b55 100644
--- a/src/tools/msvc/Solution.pm
+++ b/src/tools/msvc/Solution.pm
@@ -1199,7 +1199,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;
}