1From 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 5 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 12Rebase to 2.9.9 13 14Signed-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 20index ca911f3..3bbd654 100644 21--- a/configure.ac 22+++ b/configure.ac 23@@ -808,7 +808,8 @@ dnl 24 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-- 342.7.4 35 36