Use single quotes instead of double quotes.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@629 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
6e424f152a
commit
93afa3c5bb
|
@ -4,14 +4,14 @@ Import('env')
|
|||
import sys
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
output = "../../../../Binary/mac/Plugins/Plugin_nJoy_SDL.so"
|
||||
output = '../../../../Binary/mac/Plugins/Plugin_nJoy_SDL.so'
|
||||
else:
|
||||
output = "../../../../Binary/linux/Plugins/Plugin_nJoy_SDL.so"
|
||||
output = '../../../../Binary/linux/Plugins/Plugin_nJoy_SDL.so'
|
||||
|
||||
files = [
|
||||
"nJoy.cpp",
|
||||
"GUI/AboutBox.cpp",
|
||||
"GUI/ConfigBox.cpp",
|
||||
'nJoy.cpp',
|
||||
'GUI/AboutBox.cpp',
|
||||
'GUI/ConfigBox.cpp',
|
||||
]
|
||||
|
||||
padenv = env.Clone()
|
||||
|
|
Loading…
Reference in New Issue