diff options
Diffstat (limited to 'platform/windows/detect.py')
-rw-r--r-- | platform/windows/detect.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py index b8b0509da7..a94e43fc85 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):
|