Bootstrap verbosity.

This commit is contained in:
David Anderson 2009-08-29 19:40:28 -07:00
parent fa6f2f7e64
commit 8a633363a2

View File

@ -41,11 +41,14 @@ if (!(-d 'OUTPUT')) {
if ($reconf) { if ($reconf) {
chdir('OUTPUT'); chdir('OUTPUT');
my ($result);
print "Attempting to reconfigure...\n";
if ($^O eq "linux") { if ($^O eq "linux") {
system('python3.1 ../configure.py --enable-optimize'); $result = system('python3.1 ../configure.py --enable-optimize');
} else { } 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'); open(FILE, '>OUTPUT/sentinel');