Corrected paths.

This commit is contained in:
David Anderson 2009-08-29 20:17:52 -07:00
parent e94234ae73
commit a4512141a9

View File

@ -44,9 +44,9 @@ if ($reconf) {
my ($result); my ($result);
print "Attempting to reconfigure...\n"; print "Attempting to reconfigure...\n";
if ($^O eq "linux") { if ($^O eq "linux") {
$result = `python3.1 build/configure.py --enable-optimize`; $result = `python3.1 ../build/configure.py --enable-optimize`;
} else { } else {
$result = `C:\\Python31\\Python.exe build\\configure.py --enable-optimize`; $result = `C:\\Python31\\Python.exe ..\\build\\configure.py --enable-optimize`;
} }
print "$result\n"; print "$result\n";
if ($? == -1) { if ($? == -1) {