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:36:10 -0400 |
commit | 34a65fc63e0870c7e0118e76f42b9f0996ab4195 (patch) | |
tree | d4d02ae25a0452f7277acb5e131716d9aa0f1609 /src | |
parent | abbd70022c17f541e7d05163b80631aa722fd58e (diff) |
fix syntax error
Diffstat (limited to 'src')
-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 fdfcbb73dd7..002546fec9c 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -791,7 +791,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; } |