diff engine/SConscript @ 410:efa51189ffc3

Move the LINKFLAGS to a more appropriate spot.
author prock@33b003aa-7bff-0310-803a-e67f0ece8222
date Sun, 31 Jan 2010 17:17:23 +0000
parents 81641655bc38
children 10ac0c080564
line wrap: on
line diff
--- a/engine/SConscript	Sun Jan 31 05:02:24 2010 +0000
+++ b/engine/SConscript	Sun Jan 31 17:17:23 2010 +0000
@@ -109,13 +109,11 @@
 if sys.platform == 'win32':
 	sharedlib = env.SharedLibrary(target = 'fife',
 								  source = compilefiles,
-								  LINKFLAGS=['-Wl'],
 								  OBJPREFIX='shared_',
 								  SHLIBEMITTER = '')
 else:
 	sharedlib = env.SharedLibrary(target = 'fife',
-								  source = compilefiles,
-								  LINKFLAGS=['-Wl'])
+								  source = compilefiles)
 
 #**************************************************************************
 #python library target
@@ -130,7 +128,6 @@
 							  OBJPREFIX='py_',
 							  SHLIBPREFIX='_',
 							  SHLIBSUFFIX=dest_suffix,
-							  LINKFLAGS=['-Wl'],
 							  SHLIBEMITTER = '')
 
 pythonext = env.PythonExtensions(target = [os.path.join('swigwrappers', 'python' ,'fife_wrap.cc'), os.path.join('python', 'fife', 'fife.py')],