Skip to content

Commit

Permalink
Don't pass empty string to msvc linker. Ref pypa/setuptools#2417.
Browse files Browse the repository at this point in the history
  • Loading branch information
gallexme authored and fink committed Nov 6, 2020
1 parent 25a7b50 commit d201cb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class BuildExt(build_ext):
"unix": [""],
}
l_opts = {
"msvc": [""],
"msvc": [],
"unix": [""],
}

Expand Down

0 comments on commit d201cb1

Please sign in to comment.