diff options
Diffstat (limited to 'platform/x11/SCsub')
-rw-r--r-- | platform/x11/SCsub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/x11/SCsub b/platform/x11/SCsub index 93cd2ca267..0defd4f025 100644 --- a/platform/x11/SCsub +++ b/platform/x11/SCsub @@ -3,11 +3,11 @@ Import('env') -common_x11=[\ +common_x11 = [\ "context_gl_x11.cpp",\ "os_x11.cpp",\ "key_mapping_x11.cpp",\ "joystick_linux.cpp",\ ] -env.Program('#bin/godot',['godot_x11.cpp']+common_x11) +env.Program('#bin/godot', ['godot_x11.cpp'] + common_x11) |