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