Fix an undefined symbol in the WiimoteNew plugin on linux. The inputuicommon lib must be earlier in the list than inputcommon and common.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5887 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
697480f5cc
commit
ec9871e2bc
|
@ -27,7 +27,7 @@ if sys.platform == 'win32' or sys.platform == 'linux2':
|
|||
libs += [ 'SDL' ]
|
||||
|
||||
if wiinewenv['HAVE_WX']:
|
||||
libs += [ 'inputuicommon' ]
|
||||
libs = [ 'inputuicommon' ] + libs
|
||||
files += [ 'WiimoteConfigDiag.cpp' ]
|
||||
|
||||
if wiinewenv['HAVE_WIIUSE']:
|
||||
|
|
Loading…
Reference in New Issue