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:56:51 +01:00
parent f19529cfd6
commit d783261e99
1 changed files with 2 additions and 2 deletions

View File

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