Fixed a bug in win32 startbuild.pl.

This commit is contained in:
David Anderson 2008-11-18 04:32:55 -06:00
parent 0459587ec1
commit 547c4f669e

View File

@ -71,7 +71,7 @@ sub BuildWindows
my ($dir, $file, $param, $vcbuilder, $cmd); my ($dir, $file, $param, $vcbuilder, $cmd);
$dir = getcwd(); $dir = getcwd();
chdir($srcdir); chdir("$srcdir\\msvc9");
$param = "Release"; $param = "Release";
if ($build eq "Orange Box") if ($build eq "Orange Box")
@ -90,7 +90,7 @@ sub BuildWindows
system($cmd); system($cmd);
CheckFailure(); CheckFailure();
$file = "$param\\$binary"; $file = "msvc9\\$param\\$binary";
die "Output library not found: $file\n" if (!-f $file); die "Output library not found: $file\n" if (!-f $file);