From 0bb53f265f82f4a71c5b99268b2ad1e79d2d9d7d Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sun, 11 Jul 2021 22:24:38 -0700 Subject: [PATCH] Switch to python3 for ambuild. --- support/buildbot/bootstrap.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/buildbot/bootstrap.pl b/support/buildbot/bootstrap.pl index d182739..8df66f8 100755 --- a/support/buildbot/bootstrap.pl +++ b/support/buildbot/bootstrap.pl @@ -61,12 +61,12 @@ push(@conf_argv, '--sdks=all'); 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";