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:42 -0400 |
commit | bb18bc2249239fff10f84c276783962d546c858a (patch) | |
tree | 0262767b66580c377636d7c91d4e975b7fc8a75b /src/tools/msvc/Solution.pm | |
parent | c828a7246eed0bf92490660543a072cf3610441a (diff) |
fix syntax error
Diffstat (limited to 'src/tools/msvc/Solution.pm')
-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 95b6856a32d..38ddf09f65c 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -1173,7 +1173,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; } |