From: Yogesh Tyagi <[email protected]> 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 <[email protected]> --- 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<pver>\d+\.\d{8}\.\d+)" do_install() { - oe_runmake install DESTDIR=${D} PREFIX=${prefix} + oe_runmake install DESTDIR=${D} PREFIX=${prefix} LDCONFIG=true } -- 2.37.3
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#127505): https://lists.openembedded.org/g/openembedded-devel/message/127505 Mute This Topic: https://lists.openembedded.org/mt/119735212/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
