summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYogesh Tyagi <yogesh.tyagi@intel.com>2026-06-10 10:32:22 +0800
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-06-12 07:19:26 -0700
commit6feb91601c3fa69d88cf5822df97a37905a601ea (patch)
treeb5202ecefbb17c4771bffa3aa1f8008bc9bd76a8
parent702acd16d70665be31049324a523012e9696e777 (diff)
downloadmeta-openembedded-6feb91601c3fa69d88cf5822df97a37905a601ea.tar.gz
xdotool: avoid running host ldconfig during do_install
The upstream Makefile invokes ldconfig at install time, which runs the host ldconfig against the target sysroot (${D}) and is both unnecessary and non-deterministic for cross builds. Pass LDCONFIG=true to make the install step a no-op for ldconfig, matching the WITHOUT_RPATH_FIX handling already used here. Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
-rw-r--r--meta-oe/recipes-graphics/xdotool/xdotool_4.20251130.1.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-graphics/xdotool/xdotool_4.20251130.1.bb b/meta-oe/recipes-graphics/xdotool/xdotool_4.20251130.1.bb
index 75fa636838..e2792ed0b0 100644
--- a/meta-oe/recipes-graphics/xdotool/xdotool_4.20251130.1.bb
+++ b/meta-oe/recipes-graphics/xdotool/xdotool_4.20251130.1.bb
@@ -18,5 +18,5 @@ UPSTREAM_CHECK_URI = "https://github.com/jordansissel/xdotool/tags"
18UPSTREAM_CHECK_REGEX = "v(?P<pver>\d+\.\d{8}\.\d+)" 18UPSTREAM_CHECK_REGEX = "v(?P<pver>\d+\.\d{8}\.\d+)"
19 19
20do_install() { 20do_install() {
21 oe_runmake install DESTDIR=${D} PREFIX=${prefix} 21 oe_runmake install DESTDIR=${D} PREFIX=${prefix} LDCONFIG=true
22} 22}