blob: 956ff3f33e6c5eae476cdc1706eba2eee90f9241 [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001From b038c3452667ed17ddb0e791cd7bdc7f8774ac29 Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Sat, 11 May 2019 20:35:20 +0800
4Subject: [PATCH] Allow us to pass in PYTHON_SITE_PACKAGES
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005
6The python binary used when building for nativesdk doesn't give us the
7correct path here so we need to be able to specify it ourselves.
8
9Upstream-Status: Inappropriate [config]
10Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
11
Brad Bishopc342db32019-05-15 21:57:59 -040012Rebase to 2.9.9
13
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
15---
16 configure.ac | 3 ++-
17 1 file changed, 2 insertions(+), 1 deletion(-)
18
19diff --git a/configure.ac b/configure.ac
Brad Bishopc342db32019-05-15 21:57:59 -040020index ca911f3..3bbd654 100644
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021--- a/configure.ac
22+++ b/configure.ac
Brad Bishopc342db32019-05-15 21:57:59 -040023@@ -808,7 +808,8 @@ dnl
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024
25 PYTHON_VERSION=
26 PYTHON_INCLUDES=
27-PYTHON_SITE_PACKAGES=
28+# Allow this to be set externally
29+#PYTHON_SITE_PACKAGES=
30 PYTHON_TESTS=
31 pythondir=
32 if test "$with_python" != "no" ; then
33--
Brad Bishopc342db32019-05-15 21:57:59 -0400342.7.4
Patrick Williamsc124f4f2015-09-15 14:41:29 -050035