Skip to content

Commit a44a2b9

Browse files
committed
fix syntax error
1 parent 3f70d7e commit a44a2b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/msvc/Solution.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ sub GetFakeConfigure
865865
$cfg .= ' --with-perl' if ($self->{options}->{perl});
866866
$cfg .= ' --with-python' if ($self->{options}->{python});
867867
my $port = $self->{options}->{'--with-pgport'};
868-
$cfg .= " --with-pgport=$port" if defined($port)
868+
$cfg .= " --with-pgport=$port" if defined($port);
869869

870870
return $cfg;
871871
}

0 commit comments

Comments
 (0)