Skip to content

Commit be45d76

Browse files
Avasamjaraco
authored andcommitted
Bugfix: MSVC compiler no longer sets shared_lib_format
1 parent b53777a commit be45d76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distutils/compilers/C/msvc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ class Compiler(base.Compiler):
257257
obj_extension = '.obj'
258258
static_lib_extension = '.lib'
259259
shared_lib_extension = '.dll'
260-
static_lib_format = static_lib_format = '%s%s'
260+
static_lib_format = shared_lib_format = '%s%s'
261261
exe_extension = '.exe'
262262

263263
def __init__(self, verbose=False, dry_run=False, force=False) -> None:

0 commit comments

Comments
 (0)