mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 11:02:28 +02:00
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
|
import sys
|
||||||
|
|
||||||
if sys.platform == 'darwin':
|
if sys.platform == 'darwin':
|
||||||
output = "../../../../Binary/mac/Plugins/Plugin_nJoy_SDL.so"
|
output = '../../../../Binary/mac/Plugins/Plugin_nJoy_SDL.so'
|
||||||
else:
|
else:
|
||||||
output = "../../../../Binary/linux/Plugins/Plugin_nJoy_SDL.so"
|
output = '../../../../Binary/linux/Plugins/Plugin_nJoy_SDL.so'
|
||||||
|
|
||||||
files = [
|
files = [
|
||||||
"nJoy.cpp",
|
'nJoy.cpp',
|
||||||
"GUI/AboutBox.cpp",
|
'GUI/AboutBox.cpp',
|
||||||
"GUI/ConfigBox.cpp",
|
'GUI/ConfigBox.cpp',
|
||||||
]
|
]
|
||||||
|
|
||||||
padenv = env.Clone()
|
padenv = env.Clone()
|
||||||
|
Loading…
Reference in New Issue
Block a user