We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dac08a8 commit dbb1db1Copy full SHA for dbb1db1
setup.py
@@ -37,8 +37,9 @@ def get_output(*args, **kwargs):
37
38
39
# get the compile and link args
40
+posix = os.name != 'nt'
41
link_args, compile_args = [
- shlex.split(os.environ[e]) if e in os.environ else None
42
+ shlex.split(os.environ[e], posix=posix) if e in os.environ else None
43
for e in ['GSSAPI_LINKER_ARGS', 'GSSAPI_COMPILER_ARGS']
44
]
45
0 commit comments