summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-01-18 12:24:10 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-01-20 22:24:20 +0000
commit042187a65d0622fbd721346b4e55146616c87fd8 (patch)
tree973bbcfd0902d5564197e1eb81bdc79e7813341e
parent9908b7955e75e10d6a1384e4c08417ef534464af (diff)
downloadopenembedded-core-contrib-042187a65d0622fbd721346b4e55146616c87fd8.tar.gz
python3: use ncursesw, not ncurses
So that wide-char functions are accssible. [YOCTO #13142] Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/python/python3/130-readline-setup.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3/130-readline-setup.patch b/meta/recipes-devtools/python/python3/130-readline-setup.patch
index c805652d69..cfa712678b 100644
--- a/meta/recipes-devtools/python/python3/130-readline-setup.patch
+++ b/meta/recipes-devtools/python/python3/130-readline-setup.patch
@@ -49,7 +49,7 @@ Upstream-Status: Inappropriate [Embedded Specific]
- curses_library = 'ncurses'
- elif self.compiler.find_library_file(lib_dirs, 'curses'):
- curses_library = 'curses'
-+ curses_library = "ncurses"
++ curses_library = "ncursesw"
if host_platform == 'darwin':
os_release = int(os.uname()[2].split('.')[0])