From 0c9a81db68ff5538ca91561b26033b15975d2383 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 18 Nov 2008 04:34:35 -0600 Subject: [PATCH] Another win32 startbuild.pl fix. --- 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 d56b416..1a9f185 100755 --- a/support/buildbot/startbuild.pl +++ b/support/buildbot/startbuild.pl @@ -90,13 +90,13 @@ sub BuildWindows system($cmd); CheckFailure(); - $file = "msvc9\\$param\\$binary"; + $file = "$param\\$binary"; die "Output library not found: $file\n" if (!-f $file); chdir($dir); - push(@LIBRARIES, "$srcdir\\$file"); + push(@LIBRARIES, "$srcdir\\msvc9\\$file"); } sub BuildLinux