summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python/use_sysroot_ncurses_instead_of_host.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python/python/use_sysroot_ncurses_instead_of_host.patch')
-rw-r--r--meta/recipes-devtools/python/python/use_sysroot_ncurses_instead_of_host.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/recipes-devtools/python/python/use_sysroot_ncurses_instead_of_host.patch b/meta/recipes-devtools/python/python/use_sysroot_ncurses_instead_of_host.patch
deleted file mode 100644
index fb4a3bcf95..0000000000
--- a/meta/recipes-devtools/python/python/use_sysroot_ncurses_instead_of_host.patch
+++ /dev/null
@@ -1,21 +0,0 @@
1Python tries to use ncursesw from the host,
2if it is not found causes an error on configure,
3we should use ncursesw from sysroot instead
4
5Upstream-Status: Pending
6
7Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
8
9Index: Python-2.7.9/configure.ac
10===================================================================
11--- Python-2.7.9.orig/configure.ac
12+++ Python-2.7.9/configure.ac
13@@ -4311,7 +4311,7 @@ fi
14
15 # first curses configure check
16 ac_save_cppflags="$CPPFLAGS"
17-CPPFLAGS="$CPPFLAGS -I/usr/include/ncursesw"
18+CPPFLAGS="$CPPFLAGS -I=/usr/include/ncursesw"
19
20 AC_CHECK_HEADERS(curses.h ncurses.h)
21