Kaydet (Commit) e6f22801 authored tarafından Christian Heimes's avatar Christian Heimes

Just to be sure, initialize with a copy of the compiler's lib and inc dirs.

...@@ -507,8 +507,8 @@ class PyBuildExt(build_ext): ...@@ -507,8 +507,8 @@ class PyBuildExt(build_ext):
] ]
inc_dirs = self.compiler.include_dirs + ['/usr/include'] inc_dirs = self.compiler.include_dirs + ['/usr/include']
else: else:
lib_dirs = [] lib_dirs = self.compiler.library_dirs[:]
inc_dirs = [] inc_dirs = self.compiler.include_dirs[:]
exts = [] exts = []
missing = [] missing = []
......
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