Skip to content
Snippets Groups Projects
Commit 136805c5a777 authored by Steven Winfield's avatar Steven Winfield
Browse files

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 9291d275c8fc
No related branches found
No related tags found
No related merge requests found
...@@ -497,7 +497,7 @@ ...@@ -497,7 +497,7 @@
runtime for .py files and Py2 for .pyx files. runtime for .py files and Py2 for .pyx files.
""" """
if not build_dir: if not build_dir:
build_dir = os.path.expanduser('~/.pyxbld') build_dir = os.path.join(os.path.expanduser('~'), '.pyxbld')
global pyxargs global pyxargs
pyxargs = PyxArgs() #$pycheck_no pyxargs = PyxArgs() #$pycheck_no
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment