diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-01-18 12:24:10 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-21 23:44:22 +0000 |
commit | 2daede4aa8172b0c992e426cccd995bc0665a42b (patch) | |
tree | a5ffecc56ce57e31459d805473ab349f48ac2475 /meta | |
parent | 676705765ad58db79c23fddd6a53f5907a5812bd (diff) | |
download | poky-2daede4aa8172b0c992e426cccd995bc0665a42b.tar.gz |
python3: use ncursesw, not ncurses
So that wide-char functions are accssible.
[YOCTO #13142]
(From OE-Core rev: 042187a65d0622fbd721346b4e55146616c87fd8)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python3/130-readline-setup.patch | 2 |
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] | |||
49 | - curses_library = 'ncurses' | 49 | - curses_library = 'ncurses' |
50 | - elif self.compiler.find_library_file(lib_dirs, 'curses'): | 50 | - elif self.compiler.find_library_file(lib_dirs, 'curses'): |
51 | - curses_library = 'curses' | 51 | - curses_library = 'curses' |
52 | + curses_library = "ncurses" | 52 | + curses_library = "ncursesw" |
53 | 53 | ||
54 | if host_platform == 'darwin': | 54 | if host_platform == 'darwin': |
55 | os_release = int(os.uname()[2].split('.')[0]) | 55 | os_release = int(os.uname()[2].split('.')[0]) |