1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-16 03:24:07 +00:00
freebsd-ports/games/evq3/files/patch-SConscript_cgame

16 lines
568 B
Plaintext
Raw Normal View History

2007-04-21 03:09:06 +00:00
--- ./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')