Commit b253299c authored by Steven Winfield's avatar Steven Winfield

Use OS-dependent directory separator - a / on windows is interpreted by LINK...

Use OS-dependent directory separator - a / on windows is interpreted by LINK as a command line switch
parent ad025649
......@@ -497,7 +497,7 @@ def install(pyximport=True, pyimport=False, build_dir=None, build_in_temp=True,
runtime for .py files and Py2 for .pyx files.
"""
if not build_dir:
build_dir = os.path.expanduser('~/.pyxbld')
build_dir = os.path.join(os.path.expanduser('~'), '.pyxbld')
global pyxargs
pyxargs = PyxArgs() #$pycheck_no
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment