summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiu Yiding <liuyd.fnst@fujitsu.com>2025-11-06 10:50:57 +0800
committerKhem Raj <raj.khem@gmail.com>2025-11-06 16:00:52 -0800
commit5a0ff4bd622d368d1d47edf1521ab0fd1d434e6e (patch)
treed852f6295ded3293e08537f27f0dd8d817554cbc
parent9467195447dad2f1fefeeeb3289f167f22a5b094 (diff)
downloadmeta-openembedded-5a0ff4bd622d368d1d47edf1521ab0fd1d434e6e.tar.gz
xterm: fix conflict between multilibs
Don't specify the program-transform-name to prevent conflict error as following: Error: Transaction test error: file /usr/bin/koi8rxterm conflicts between attempted installs of lib32-xterm-403-r0.core2_32 and xterm-403-r0.x86_64_v3 file /usr/bin/resize.xterm conflicts between attempted installs of lib32-xterm-403-r0.core2_32 and xterm-403-r0.x86_64_v3 file /usr/bin/uxterm conflicts between attempted installs of lib32-xterm-403-r0.core2_32 and xterm-403-r0.x86_64_v3 file /usr/bin/xterm conflicts between attempted installs of lib32-xterm-403-r0.core2_32 and xterm-403-r0.x86_64_v3 file /usr/share/applications/uxterm.desktop conflicts between attempted installs of lib32-xterm-403-r0.core2_32 and xterm-403-r0.x86_64_v3 file /usr/share/applications/xterm.desktop conflicts between attempted installs of lib32-xterm-403-r0.core2_32 and xterm-403-r0.x86_64_v3 Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-graphics/xorg-app/xterm_403.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_403.bb b/meta-oe/recipes-graphics/xorg-app/xterm_403.bb
index db59b10a15..a6f2b55336 100644
--- a/meta-oe/recipes-graphics/xorg-app/xterm_403.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xterm_403.bb
@@ -22,6 +22,7 @@ EXTRA_OECONF = " --x-includes=${STAGING_INCDIR} \
22 --disable-rpath-hack \ 22 --disable-rpath-hack \
23 --disable-setuid \ 23 --disable-setuid \
24 --with-app-defaults=${datadir}/X11/app-defaults \ 24 --with-app-defaults=${datadir}/X11/app-defaults \
25 --program-transform-name= \
25 " 26 "
26 27
27B = "${S}" 28B = "${S}"