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

This commit is contained in:
Christian Heimes 2012-12-12 12:57:03 +01:00
commit e6f228011e

View File

@ -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 = []