Re: [OE-core] [PATCH V6] rxvt-unicode: Fix installing of terminfo

2024-02-28 Thread Alexander Kanavin
On Wed, 28 Feb 2024 at 02:54, Changqing Li wrote: > Yes, the wrong location is the only problem. V4 patch is a way to make native > tic install to a right location. > > but this solution (hardcode output dir to $(DESTDIR)$(datadir)/terminfo) is > rejected by upstream. > > if use V4 patch, we

Re: [OE-core] [PATCH V6] rxvt-unicode: Fix installing of terminfo

2024-02-27 Thread Changqing Li
On 2/27/24 17:37, Alexander Kanavin wrote: CAUTION: This email comes from a non Wind River email account! Do not click links or open attachments unless you recognize the sender and know the content is safe. On Tue, 27 Feb 2024 at 08:10, Changqing Li wrote: + + install -d ${D}/${syscon

Re: [OE-core] [PATCH V6] rxvt-unicode: Fix installing of terminfo

2024-02-27 Thread Alexander Kanavin
On Tue, 27 Feb 2024 at 08:10, Changqing Li wrote: > + > + install -d ${D}/${sysconfdir} > + install -m 0644 ${S}/doc/etc/rxvt-unicode.terminfo > ${D}/${sysconfdir}/rxvt-unicode.terminfo > +} > + > +RDEPENDS:${PN} = "ncurses-tools" > +PACKAGE_WRITE_DEPS += "qemu-native" > +pkg_postinst

[OE-core] [PATCH V6] rxvt-unicode: Fix installing of terminfo

2024-02-26 Thread Changqing Li
From: Changqing Li For cross compile, TIC will be native tic in recipe-sysroot-native, and the terminfo path will be native path, the rxvt-unicode terminfo will be wrongly installed to native path. disable the terminfo installation by setting TIC to : and use qemu to install terminfo to make sur