mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
16 lines
568 B
Plaintext
16 lines
568 B
Plaintext
|
--- ./SConscript_cgame.orig Mon Apr 16 17:45:23 2007
|
||
|
+++ ./SConscript_cgame Mon Apr 16 17:45:23 2007
|
||
|
@@ -36,10 +36,6 @@
|
||
|
|
||
|
cgame_env = env.Copy()
|
||
|
|
||
|
-if env['arch'] == 'linux-i386':
|
||
|
- cgame_env.SharedLibrary('cgame', [cgame_src, dll_src], LIBS=['m'])
|
||
|
- cgame_env.InstallAs('#baseq3/cgamei386.so', 'libcgame.so')
|
||
|
-
|
||
|
-elif env['arch'] == 'linux-x86_64':
|
||
|
+if sys.platform != 'win32':
|
||
|
cgame_env.SharedLibrary('cgame', [cgame_src, dll_src], LIBS=['m'])
|
||
|
- cgame_env.InstallAs('#baseq3/cgamex86_64.so', 'libcgame.so')
|
||
|
+ cgame_env.InstallAs('#baseq3/cgame.so', 'libcgame.so')
|