Commit 33336cda authored by Christian Heimes's avatar Christian Heimes

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

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