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>
This commit is contained in:
Alexander Kanavin
2019-01-18 12:24:10 +01:00
committed by Richard Purdie
parent 676705765a
commit 2daede4aa8

View File

@@ -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])