Fix cross compiling issue in setup.py, ensure that lib_dirs and inc_dirs are

defined in cross compiling mode, too.
This commit is contained in:
Christian Heimes 2012-12-12 12:41:50 +01:00
commit bf5fcc7fc8
2 changed files with 6 additions and 0 deletions

View file

@ -467,6 +467,9 @@ Tests
Build
-----
- Fix cross compiling issue in setup.py, ensure that lib_dirs and inc_dirs are
defined in cross compiling mode, too.
- Issue #16593: Have BSD 'make -s' do the right thing, thanks to Daniel Shahaf
- Issue #16262: fix out-of-src-tree builds, if mercurial is not installed.

View file

@ -506,6 +506,9 @@ class PyBuildExt(build_ext):
'/lib', '/usr/lib',
]
inc_dirs = self.compiler.include_dirs + ['/usr/include']
else:
lib_dirs = []
inc_dirs = []
exts = []
missing = []