diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3/0001-main.c-if-OEPYTHON3HOME-is-set-use-instead-of-PYTHON.patch')
-rw-r--r-- | meta/recipes-devtools/python/python3/0001-main.c-if-OEPYTHON3HOME-is-set-use-instead-of-PYTHON.patch | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/meta/recipes-devtools/python/python3/0001-main.c-if-OEPYTHON3HOME-is-set-use-instead-of-PYTHON.patch b/meta/recipes-devtools/python/python3/0001-main.c-if-OEPYTHON3HOME-is-set-use-instead-of-PYTHON.patch index a0ed7cc830..a146c747f8 100644 --- a/meta/recipes-devtools/python/python3/0001-main.c-if-OEPYTHON3HOME-is-set-use-instead-of-PYTHON.patch +++ b/meta/recipes-devtools/python/python3/0001-main.c-if-OEPYTHON3HOME-is-set-use-instead-of-PYTHON.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From ffe7797637f08cd6ee4c82e2d67462c5e194d30a Mon Sep 17 00:00:00 2001 | 1 | From 5ce3ac59531828ff682646fbba59b2126b28a8aa Mon Sep 17 00:00:00 2001 |
2 | From: Jaewon Lee <jaewon.lee@xilinx.com> | 2 | From: Jaewon Lee <jaewon.lee@xilinx.com> |
3 | Date: Thu, 25 Apr 2019 15:34:26 -0700 | 3 | Date: Thu, 25 Apr 2019 15:34:26 -0700 |
4 | Subject: [PATCH] main.c: if OEPYTHON3HOME is set use instead of PYTHONHOME | 4 | Subject: [PATCH] main.c: if OEPYTHON3HOME is set use instead of PYTHONHOME |
@@ -12,15 +12,16 @@ to set a different path for python3 | |||
12 | Signed-off-by: Jaewon Lee <jaewon.lee@xilinx.com> | 12 | Signed-off-by: Jaewon Lee <jaewon.lee@xilinx.com> |
13 | 13 | ||
14 | Upstream-Status: Inappropriate [OE specific configuration] | 14 | Upstream-Status: Inappropriate [OE specific configuration] |
15 | |||
15 | --- | 16 | --- |
16 | Modules/main.c | 17 +++++++++++++---- | 17 | Modules/main.c | 17 +++++++++++++---- |
17 | 1 file changed, 13 insertions(+), 4 deletions(-) | 18 | 1 file changed, 13 insertions(+), 4 deletions(-) |
18 | 19 | ||
19 | diff --git a/Modules/main.c b/Modules/main.c | 20 | diff --git a/Modules/main.c b/Modules/main.c |
20 | index a745381..b553e30 100644 | 21 | index acc59c6..407085a 100644 |
21 | --- a/Modules/main.c | 22 | --- a/Modules/main.c |
22 | +++ b/Modules/main.c | 23 | +++ b/Modules/main.c |
23 | @@ -1855,10 +1855,19 @@ config_init_home(_PyCoreConfig *config) | 24 | @@ -1834,10 +1834,19 @@ config_init_home(_PyCoreConfig *config) |
24 | } | 25 | } |
25 | return _Py_INIT_OK(); | 26 | return _Py_INIT_OK(); |
26 | } | 27 | } |
@@ -44,6 +45,3 @@ index a745381..b553e30 100644 | |||
44 | } | 45 | } |
45 | config->home = home; | 46 | config->home = home; |
46 | return _Py_INIT_OK(); | 47 | return _Py_INIT_OK(); |
47 | -- | ||
48 | 2.7.4 | ||
49 | |||