public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [PATCH] [OE-core] [PATCH v3] ncurses: Fix install conflict when enable multilib.
@ 2025-01-16  0:19 wangmy
  2025-01-21 15:30 ` Ross Burton
  0 siblings, 1 reply; 11+ messages in thread
From: wangmy @ 2025-01-16  0:19 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu, Lei Maohui

From: Wang Mingyu <wangmy@fujitsu.com>

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".

Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-core/ncurses/ncurses.inc | 1 +
 1 file changed, 1 insertion(+)

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() {
 	        --without-debug \
 	        --without-ada \
 	        --without-gpm \
+		--with-xterm-kbs=del \
 	        --enable-hard-tabs \
 	        --enable-xmc-glitch \
 	        --enable-colorfgbg \
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2025-02-07  8:42 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-16  0:19 [PATCH] [OE-core] [PATCH v3] ncurses: Fix install conflict when enable multilib wangmy
2025-01-21 15:30 ` Ross Burton
2025-01-21 15:39   ` Alexander Kanavin
2025-01-22  0:16     ` Mingyu Wang (Fujitsu)
2025-01-22  8:28       ` Alexander Kanavin
2025-01-24  2:10         ` Mingyu Wang (Fujitsu)
2025-01-24 10:45           ` Alexander Kanavin
2025-01-25 23:57             ` Mingyu Wang (Fujitsu)
2025-01-27  8:16               ` Alexander Kanavin
2025-02-07  2:03         ` Mingyu Wang (Fujitsu)
2025-02-07  8:42           ` Alexander Kanavin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox