Address
:
[go:
up one dir
,
main page
]
Include Form
Remove Scripts
Accept Cookies
Show Images
Show Referer
Rotate13
Base64
Strip Meta
Strip Title
Session Cookies
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c828a72
)
fix syntax error
author
Andrew Dunstan
<andrew@dunslane.net>
Fri, 28 May 2021 13:35:11 +0000
(09:35 -0400)
committer
Andrew Dunstan
<andrew@dunslane.net>
Fri, 28 May 2021 13:36:42 +0000
(09:36 -0400)
src/tools/msvc/Solution.pm
patch
|
blob
|
blame
|
history
diff --git
a/src/tools/msvc/Solution.pm
b/src/tools/msvc/Solution.pm
index 95b6856a32d80d9f52945d3b5ef7ef06ba198fa5..38ddf09f65c722e4111419025fad07eec5eec579 100644
(file)
--- 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;
}