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>
This commit is contained in:
Yogesh Tyagi
2026-06-10 10:32:22 +08:00
committed by Khem Raj
parent 702acd16d7
commit 6feb91601c
@@ -18,5 +18,5 @@ UPSTREAM_CHECK_URI = "https://github.com/jordansissel/xdotool/tags"
UPSTREAM_CHECK_REGEX = "v(?P<pver>\d+\.\d{8}\.\d+)"
do_install() {
oe_runmake install DESTDIR=${D} PREFIX=${prefix}
oe_runmake install DESTDIR=${D} PREFIX=${prefix} LDCONFIG=true
}