summaryrefslogtreecommitdiff
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:55 -0400
commitd5d89629cac9a953aaf1e6f99dd15cb468e747fe (patch)
tree0fcbe17d0cd4a830be3227503e12d21fa2e63131
parenta8c1062a11846327f2d04992558da37a64342c8a (diff)
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 adc7f7e30ac..711db815d8f 100644
--- a/src/tools/msvc/Solution.pm
+++ b/src/tools/msvc/Solution.pm
@@ -814,7 +814,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;
}