blob: 2c657861c8e60ed5d693e3a41249fab0b9a07e79 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001Python 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
5
6Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
7
8Index: Python-2.7.9/configure.ac
9===================================================================
10--- Python-2.7.9.orig/configure.ac
11+++ Python-2.7.9/configure.ac
12@@ -4311,7 +4311,7 @@ fi
13
14 # first curses configure check
15 ac_save_cppflags="$CPPFLAGS"
16-CPPFLAGS="$CPPFLAGS -I/usr/include/ncursesw"
17+CPPFLAGS="$CPPFLAGS -I=/usr/include/ncursesw"
18
19 AC_CHECK_HEADERS(curses.h ncurses.h)
20