Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ec86ef7

Browse files
committed
Fix another stupid typo...
Jan Urbanski
1 parent dc11595 commit ec86ef7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/msvc/Mkvcbuild.pm

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Mkvcbuild;
33
#
44
# Package that generates build files for msvc build
55
#
6-
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.52 2010/02/14 14:10:23 mha Exp $
6+
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.53 2010/02/15 17:10:50 mha Exp $
77
#
88
use Carp;
99
use Win32;
@@ -148,7 +148,7 @@ sub mkvcbuild
148148
if ($solution->{options}->{python})
149149
{
150150
# Attempt to get python version and location. Assume python.exe in specified dir.
151-
open(P, $solution->{options}->{python} . "\\python -c \"import sys;print(sys.prefix);print(str(sys.version_info[0])+str(sys.version_info[1]))\" |") || die "Could not query for python versoin!\n";
151+
open(P, $solution->{options}->{python} . "\\python -c \"import sys;print(sys.prefix);print(str(sys.version_info[0])+str(sys.version_info[1]))\" |") || die "Could not query for python version!\n";
152152
my $pyprefix = <P>;chomp($pyprefix);
153153
my $pyver = <P>;chomp($pyver);
154154
close(P);

0 commit comments

Comments
 (0)