1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-01-19 08:52:34 +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 ($platform ne "windows")
{ {
if ($suffix eq 'full') return;
{
$binary .= '_i486.so';
}
else
{
$binary .= '.so';
}
} }
if ($suffix eq 'full')
{
$binary .= '_i486.so';
}
else
{
$binary .= '.so';
}
BuildLinux($srcdir, $objdir, $binary); BuildLinux($srcdir, $objdir, $binary);
} }
elsif ($platform ne "linux") else
{ {
if ($platform ne "linux")
{
return;
}
$binary .= '.dll'; $binary .= '.dll';
BuildWindows($srcdir, $vcproj, $objdir, $binary); BuildWindows($srcdir, $vcproj, $objdir, $binary);
} }