aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/libpwquality/files/add-missing-python-include-dir-for-cross.patch
blob: d12492f022f987a33b9140632aefa8d11359c6df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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