diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2025-01-16 08:19:39 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-11 11:44:19 +0000 |
| commit | c0329693b16073b2195bb0493c788b2069cc0396 (patch) | |
| tree | c11b3abde4200f193c78ce581dddcb35208fbeac | |
| parent | eb1537f04b4fe44c15a8131184bcc3acc63b559a (diff) | |
| download | poky-c0329693b16073b2195bb0493c788b2069cc0396.tar.gz | |
ncurses: Fix install conflict when enable multilib.
The setting of want_xterm_kbs is as following:
case $host_os in
(*linux-gnu|*cygwin|*mingw32|*msys)
want_xterm_kbs=DEL
;;
(*)
want_xterm_kbs=BS
;;
esac
The host_os when enable multilib is as folloing:
host_os of aarch64 : linux-gnu
host_os of aarch32 : linux-gnueabi
So in lib64 package, want_xterm_kbs=DEL, and in lib32 package, want_xterm_kbs=BS.
It results the differences in the terminfo files between lib32 and lib64 packages.
Using --with-xterm-kbs=del to unify the packages of lib32 and lib64 into "want_xterm_kbs=DEL".
(From OE-Core rev: 3868ae96ff32e8335e539ce62f51b7a223547c48)
Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
MAIL: wangmy@fujitsu.com
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-core/ncurses/ncurses.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc index e96ee075bd..3f93550cf9 100644 --- a/meta/recipes-core/ncurses/ncurses.inc +++ b/meta/recipes-core/ncurses/ncurses.inc | |||
| @@ -70,6 +70,7 @@ ncurses_configure() { | |||
| 70 | --without-debug \ | 70 | --without-debug \ |
| 71 | --without-ada \ | 71 | --without-ada \ |
| 72 | --without-gpm \ | 72 | --without-gpm \ |
| 73 | --with-xterm-kbs=del \ | ||
| 73 | --enable-hard-tabs \ | 74 | --enable-hard-tabs \ |
| 74 | --enable-xmc-glitch \ | 75 | --enable-xmc-glitch \ |
| 75 | --enable-colorfgbg \ | 76 | --enable-colorfgbg \ |
