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:
parent
be46e451d5
commit
2a7283fc6b
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user