From 6feb91601c3fa69d88cf5822df97a37905a601ea Mon Sep 17 00:00:00 2001 From: Yogesh Tyagi Date: Wed, 10 Jun 2026 10:32:22 +0800 Subject: [PATCH] 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 Signed-off-by: Khem Raj --- meta-oe/recipes-graphics/xdotool/xdotool_4.20251130.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" UPSTREAM_CHECK_REGEX = "v(?P\d+\.\d{8}\.\d+)" do_install() { - oe_runmake install DESTDIR=${D} PREFIX=${prefix} + oe_runmake install DESTDIR=${D} PREFIX=${prefix} LDCONFIG=true }