Skip to content

Commit 8e342c5

Browse files
authored
Merge pull request #342 from Avasam/patch-2
Bugfix: MSVC compiler no longer sets shared_lib_format
2 parents 6c0427b + be45d76 commit 8e342c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distutils/compilers/C/msvc.py

+1-1
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)