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

Another win32 startbuild.pl fix.

This commit is contained in:
David Anderson 2008-11-18 04:34:35 -06:00
parent 547c4f669e
commit 0c9a81db68

View File

@ -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