mirror of https://github.com/python/cpython
Distutils apparently requires an absolute path so provide one.
This commit is contained in:
parent
0d4fd3493e
commit
0189ddc113
2
setup.py
2
setup.py
|
@ -118,7 +118,7 @@ class PyBuildExt(build_ext):
|
|||
if not srcdir:
|
||||
# Maybe running on Windows but not using CYGWIN?
|
||||
raise ValueError("No source directory; cannot proceed.")
|
||||
srcdir = os.path.normpath(srcdir)
|
||||
srcdir = os.path.abspath(srcdir)
|
||||
moddirlist = [os.path.join(srcdir, 'Modules')]
|
||||
|
||||
# Platform-dependent module source and include directories
|
||||
|
|
Loading…
Reference in New Issue