From 547c4f669e738a2cd493f38af183c427533720bc Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 18 Nov 2008 04:32:55 -0600 Subject: [PATCH] Fixed a bug in win32 startbuild.pl. --- support/buildbot/startbuild.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/buildbot/startbuild.pl b/support/buildbot/startbuild.pl index f9f5274..d56b416 100755 --- a/support/buildbot/startbuild.pl +++ b/support/buildbot/startbuild.pl @@ -71,7 +71,7 @@ sub BuildWindows my ($dir, $file, $param, $vcbuilder, $cmd); $dir = getcwd(); - chdir($srcdir); + chdir("$srcdir\\msvc9"); $param = "Release"; if ($build eq "Orange Box") @@ -90,7 +90,7 @@ sub BuildWindows system($cmd); CheckFailure(); - $file = "$param\\$binary"; + $file = "msvc9\\$param\\$binary"; die "Output library not found: $file\n" if (!-f $file);