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:
Glenn Rice 2010-07-16 20:08:38 +00:00
parent 697480f5cc
commit ec9871e2bc
1 changed files with 1 additions and 1 deletions

View File

@ -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']: