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:11 -0400 |
commit | d69fcb9caef1ac1f38241645d4fb9f7e0ce02a70 (patch) | |
tree | d8d8c44f1f19bbaae044a9f75e544a5ec4cf936f /src | |
parent | fb424ae85f6b1e32e545f13902d3ba3429be44df (diff) | |
download | postgresql-d69fcb9caef1ac1f38241645d4fb9f7e0ce02a70.tar.gz postgresql-d69fcb9caef1ac1f38241645d4fb9f7e0ce02a70.zip |
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 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; } |