| From 1ea09e09ab2387c326bb7170835361ece6e25477 Mon Sep 17 00:00:00 2001 |
| From: Hongxu Jia <hongxu.jia@windriver.com> |
| Date: Mon, 3 Aug 2015 13:43:14 +0800 |
| Subject: [PATCH] setup.py.in: add missing python include dir for cross |
| compiling |
| |
| Upstream-Status: inappropriate [oe-core specific] |
| |
| Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
| --- |
| python/Makefile.am | 2 +- |
| python/setup.py.in | 3 ++- |
| 2 files changed, 3 insertions(+), 2 deletions(-) |
| |
| diff --git a/python/Makefile.am b/python/Makefile.am |
| index abc5cd3..e35ba71 100644 |
| --- a/python/Makefile.am |
| +++ b/python/Makefile.am |
| @@ -14,4 +14,4 @@ all-local: |
| CFLAGS="${CFLAGS} -fno-strict-aliasing" @PYTHONBINARY@ setup.py build --build-lib=. |
| |
| install-exec-local: |
| - CFLAGS="${CFLAGS} -fno-strict-aliasing" @PYTHONBINARY@ setup.py install --prefix=${DESTDIR}${prefix} |
| + CFLAGS="${CFLAGS} -fno-strict-aliasing" @PYTHONBINARY@ setup.py install --prefix=${DESTDIR}${prefix} --install-lib=${DESTDIR}/${PYTHONSITEDIR} |
| diff --git a/python/setup.py.in b/python/setup.py.in |
| index 6457595..d3db0e5 100755 |
| --- a/python/setup.py.in |
| +++ b/python/setup.py.in |
| @@ -6,6 +6,7 @@ |
| |
| from distutils.core import setup, Extension |
| from distutils.command.build_ext import build_ext as _build_ext |
| +import os |
| |
| class build_ext(_build_ext): |
| def genconstants(self, headerfile, outputfile): |
| @@ -23,7 +24,7 @@ class build_ext(_build_ext): |
| |
| pwqmodule = Extension('pwquality', |
| sources = ['pwquality.c'], |
| - include_dirs = ['../src'], |
| + include_dirs = ['../src', os.path.join(os.environ['STAGING_INCDIR'], os.environ['PYTHON_DIR'])], |
| library_dirs = ['../src/.libs'], |
| libraries = ['pwquality']) |
| |
| -- |
| 1.9.1 |
| |