1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-11-29 11:24:19 +01:00

Oh, fixed Linux build.

This commit is contained in:
Scott Ehlert 2009-02-18 01:53:10 -06:00
parent 8fbb8ba7b1
commit be46e451d5

View File

@ -47,7 +47,9 @@ sub Build
{
my ($srcdir, $vcproj, $objdir, $binary, $suffix, $platform) = (@_);
if ($^O eq "linux" && $platform ne "windows")
if ($^O eq "linux")
{
if ($platform ne "windows")
{
if ($suffix eq 'full')
{
@ -57,6 +59,7 @@ sub Build
{
$binary .= '.so';
}
}
BuildLinux($srcdir, $objdir, $binary);
}
elsif ($platform ne "linux")