mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Fix another stupid typo...
Jan Urbanski
This commit is contained in:
parent
dc11595193
commit
ec86ef7a21
@ -3,7 +3,7 @@ package Mkvcbuild;
|
|||||||
#
|
#
|
||||||
# Package that generates build files for msvc build
|
# Package that generates build files for msvc build
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.52 2010/02/14 14:10:23 mha Exp $
|
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.53 2010/02/15 17:10:50 mha Exp $
|
||||||
#
|
#
|
||||||
use Carp;
|
use Carp;
|
||||||
use Win32;
|
use Win32;
|
||||||
@ -148,7 +148,7 @@ sub mkvcbuild
|
|||||||
if ($solution->{options}->{python})
|
if ($solution->{options}->{python})
|
||||||
{
|
{
|
||||||
# Attempt to get python version and location. Assume python.exe in specified dir.
|
# Attempt to get python version and location. Assume python.exe in specified dir.
|
||||||
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";
|
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";
|
||||||
my $pyprefix = <P>;chomp($pyprefix);
|
my $pyprefix = <P>;chomp($pyprefix);
|
||||||
my $pyver = <P>;chomp($pyver);
|
my $pyver = <P>;chomp($pyver);
|
||||||
close(P);
|
close(P);
|
||||||
|
Loading…
Reference in New Issue
Block a user