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
jaraco authored and hoffmang9 committed Nov 6, 2020
1 parent 7449cca commit 08dc886
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 @@ -76,7 +76,7 @@ class BuildExt(build_ext):
"unix": [""],
}
l_opts = {
"msvc": [""],
"msvc": [],
"unix": [""],
}

Expand Down

0 comments on commit 08dc886

Please sign in to comment.