1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-01-18 07:52:32 +01:00

*Sigh* Fixed Linux build for real.

This commit is contained in:
Scott Ehlert 2009-02-18 01:58:16 -06:00
parent be46e451d5
commit 2a7283fc6b

View File

@ -51,19 +51,27 @@ sub Build
{
if ($platform ne "windows")
{
if ($suffix eq 'full')
{
$binary .= '_i486.so';
}
else
{
$binary .= '.so';
}
return;
}
if ($suffix eq 'full')
{
$binary .= '_i486.so';
}
else
{
$binary .= '.so';
}
BuildLinux($srcdir, $objdir, $binary);
}
elsif ($platform ne "linux")
else
{
if ($platform ne "linux")
{
return;
}
$binary .= '.dll';
BuildWindows($srcdir, $vcproj, $objdir, $binary);
}