From c919da095e0dc0d491a2536fb2995502fad63f9d Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 18 Nov 2013 09:52:47 -0800 Subject: [PATCH] De-hardcode Python 3. --- support/buildbot/bootstrap.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/support/buildbot/bootstrap.pl b/support/buildbot/bootstrap.pl index f971e87..6251ccb 100755 --- a/support/buildbot/bootstrap.pl +++ b/support/buildbot/bootstrap.pl @@ -27,12 +27,12 @@ if (!(-f 'OUTPUT/.ambuild2/graph')) { $argn = $#ARGV + 1; print "Attempting to reconfigure...\n"; if ($argn > 0 && $^O !~ /MSWin/) { - $result = `CC=$ARGV[0] CXX=$ARGV[0] python3 ../build/configure.py --enable-optimize`; + $result = `CC=$ARGV[0] CXX=$ARGV[0] python ../build/configure.py --enable-optimize`; } else { if ($^O eq "linux") { - $result = `CC=gcc-4.4 CXX=gcc-4.4 python3 ../build/configure.py --enable-optimize`; + $result = `CC=gcc-4.4 CXX=gcc-4.4 python ../build/configure.py --enable-optimize`; } elsif ($^O eq "darwin") { - $result = `CC=clang CXX=clang python3 ../build/configure.py --enable-optimize`; + $result = `CC=clang CXX=clang python ../build/configure.py --enable-optimize`; } else { $result = `C:\\Python27\\Python.exe ..\\build\\configure.py --enable-optimize`; }