From 8a633363a2fdfe7dec65e63f77d6f54a6539ee2c Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 29 Aug 2009 19:40:28 -0700 Subject: [PATCH] Bootstrap verbosity. --- tools/buildbot/bootstrap.pl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/buildbot/bootstrap.pl b/tools/buildbot/bootstrap.pl index 989ac545..da04c90b 100755 --- a/tools/buildbot/bootstrap.pl +++ b/tools/buildbot/bootstrap.pl @@ -41,11 +41,14 @@ if (!(-d 'OUTPUT')) { if ($reconf) { chdir('OUTPUT'); + my ($result); + print "Attempting to reconfigure...\n"; if ($^O eq "linux") { - system('python3.1 ../configure.py --enable-optimize'); + $result = system('python3.1 ../configure.py --enable-optimize'); } else { - system('C:\\Python31\\Python.exe ..\\configure.py --enable-optimize') + $result = system('C:\\Python31\\Python.exe ..\\configure.py --enable-optimize') } + print "$result\n"; } open(FILE, '>OUTPUT/sentinel');