1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-20 13:54:14 +01:00

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);
$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);