File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package Mkvcbuild;
3
3
#
4
4
# Package that generates build files for msvc build
5
5
#
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 $
7
7
#
8
8
use Carp;
9
9
use Win32;
@@ -148,7 +148,7 @@ sub mkvcbuild
148
148
if ($solution -> {options }-> {python })
149
149
{
150
150
# 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 " ;
152
152
my $pyprefix = <P>;chomp ($pyprefix );
153
153
my $pyver = <P>;chomp ($pyver );
154
154
close (P);
You can’t perform that action at this time.
0 commit comments