Skip to content

Commit 0b468f2

Browse files
committed
Use python3 for ambuild.
1 parent 8bf8c98 commit 0b468f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/buildbot/bootstrap.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@
6161
my $conf_args = join(' ', @conf_argv);
6262

6363
if ($argn > 0 && $^O !~ /MSWin/) {
64-
$result = `CC=$ARGV[0] CXX=$ARGV[0] python ../build/configure.py $conf_args`;
64+
$result = `CC=$ARGV[0] CXX=$ARGV[0] python3 ../build/configure.py $conf_args`;
6565
} else {
6666
if ($^O =~ /MSWin/) {
6767
$result = `C:\\Python38\\Python.exe ..\\build\\configure.py $conf_args`;
6868
} else {
69-
$result = `CC=clang CXX=clang python ../build/configure.py $conf_args`;
69+
$result = `CC=clang CXX=clang python3 ../build/configure.py $conf_args`;
7070
}
7171
}
7272
print "$result\n";

0 commit comments

Comments
 (0)