Skip to content

Commit 00b769e

Browse files
committed
Use python3 in bootstrap.
1 parent f92e60a commit 00b769e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

support/buildbot/bootstrap.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
print "Attempting to reconfigure...\n";
3030
my $conf_args = '--enable-optimize --no-color --symbol-files';
3131
if ($argn > 0 && $^O !~ /MSWin/) {
32-
$result = `CC=$ARGV[0] CXX=$ARGV[0] python ../build/configure.py $conf_args`;
32+
$result = `CC=$ARGV[0] CXX=$ARGV[0] python3 ../build/configure.py $conf_args`;
3333
} else {
3434
if ($^O =~ /MSWin/) {
3535
$result = `C:\\Python27\\Python.exe ..\\build\\configure.py $conf_args`;
3636
} else {
37-
$result = `CC=clang CXX=clang python ../build/configure.py $conf_args`;
37+
$result = `CC=clang CXX=clang python3 ../build/configure.py $conf_args`;
3838
}
3939
}
4040
print "$result\n";

0 commit comments

Comments
 (0)