diff options
Diffstat (limited to 'platform')
| -rw-r--r-- | platform/windows/detect.py | 4 | ||||
| -rw-r--r-- | platform/x11/SCsub | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py index b8b0509da..a94e43fc8 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -66,7 +66,9 @@ def configure(env): if (env["tools"]=="no"):
#no tools suffix
env['OBJSUFFIX'] = ".nt"+env['OBJSUFFIX']
- env['LIBSUFFIX'] = ".nt"+env['LIBSUFFIX']
+ #env['LIBSUFFIX'] = ".nt"+env['LIBSUFFIX']
+ env['platform_libsuffix'] = ".nt"+env['LIBSUFFIX']
+
if (os.name=="nt" and os.getenv("VSINSTALLDIR")!=None):
diff --git a/platform/x11/SCsub b/platform/x11/SCsub index 0644ba52e..7a6f02daa 100644 --- a/platform/x11/SCsub +++ b/platform/x11/SCsub @@ -7,7 +7,4 @@ common_x11=[\ "key_mapping_x11.cpp",\ ] -if env["target"]=="release": - env.Program('#bin/godot_rel',['godot_x11.cpp']+common_x11) -else: - env.Program('#bin/godot',['godot_x11.cpp']+common_x11) +env.Program('#bin/godot',['godot_x11.cpp']+common_x11) |
