From aa66ce6df66694d248f5e07c3336cdbfe9a1d486 Mon Sep 17 00:00:00 2001 From: Dr!fter Date: Sun, 1 Sep 2013 12:47:28 -0400 Subject: [PATCH] Fix the buildbot --- buildbot/bootstrap.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildbot/bootstrap.pl b/buildbot/bootstrap.pl index 676f3b0..a17fa7d 100644 --- a/buildbot/bootstrap.pl +++ b/buildbot/bootstrap.pl @@ -66,11 +66,11 @@ if ($^O eq "linux") { #configure AMBuild if ($^O eq "linux") { - $result = `CC=gcc CXX=gcc python3 ../build/configure.py --enable-optimize`; + $result = `CC=gcc CXX=gcc python3 configure.py --enable-optimize`; } elsif ($^O eq "darwin") { - $result = `CC=clang CXX=clang python3 ../build/configure.py --enable-optimize`; + $result = `CC=clang CXX=clang python3 configure.py --enable-optimize`; } else { - $result = `C:\\Python31\\Python.exe ..\\build\\configure.py --enable-optimize`; + $result = `C:\\Python31\\Python.exe configure.py --enable-optimize`; } print "$result\n"; if ($? != 0) {