diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2021-05-28 09:35:11 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2021-05-28 09:35:42 -0400 |
commit | 40a05cf245b867f018a13e06ed3e9a2419a4090a (patch) | |
tree | 0f39de2bb442c5b57519b7c4a4807f1602bddda3 | |
parent | ae3ef856938fed84a749215a738106af911cc23b (diff) | |
download | postgresql-40a05cf245b867f018a13e06ed3e9a2419a4090a.tar.gz postgresql-40a05cf245b867f018a13e06ed3e9a2419a4090a.zip |
fix syntax error
-rw-r--r-- | src/tools/msvc/Solution.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index 746b27d39d9..4a8b7b47731 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -899,7 +899,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; } |