From 0b468f215aaad67ff0142237e1bd4ac8ea0822ff Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sun, 11 Jul 2021 22:50:16 -0700 Subject: [PATCH] Use python3 for ambuild. --- tools/buildbot/bootstrap.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/buildbot/bootstrap.pl b/tools/buildbot/bootstrap.pl index 3cb32e4893..8a3e7e16de 100755 --- a/tools/buildbot/bootstrap.pl +++ b/tools/buildbot/bootstrap.pl @@ -61,12 +61,12 @@ my $conf_args = join(' ', @conf_argv); if ($argn > 0 && $^O !~ /MSWin/) { - $result = `CC=$ARGV[0] CXX=$ARGV[0] python ../build/configure.py $conf_args`; + $result = `CC=$ARGV[0] CXX=$ARGV[0] python3 ../build/configure.py $conf_args`; } else { if ($^O =~ /MSWin/) { $result = `C:\\Python38\\Python.exe ..\\build\\configure.py $conf_args`; } else { - $result = `CC=clang CXX=clang python ../build/configure.py $conf_args`; + $result = `CC=clang CXX=clang python3 ../build/configure.py $conf_args`; } } print "$result\n";