blob: e83c8325e5ce8c613578ebb3e4a6906ad9c42984 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001Allow us to pass in PYTHON_SITE_PACKAGES
2
3The python binary used when building for nativesdk doesn't give us the
4correct path here so we need to be able to specify it ourselves.
5
6Upstream-Status: Inappropriate [config]
7Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
8
9Rebase to 2.9.2
10Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
11---
12 configure.ac | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
14
15diff --git a/configure.ac b/configure.ac
16--- a/configure.ac
17+++ b/configure.ac
18@@ -813,7 +813,8 @@ dnl
19
20 PYTHON_VERSION=
21 PYTHON_INCLUDES=
22-PYTHON_SITE_PACKAGES=
23+# Allow this to be set externally
24+#PYTHON_SITE_PACKAGES=
25 PYTHON_TESTS=
26 pythondir=
27 if test "$with_python" != "no" ; then
28--
291.9.1
30