From patchwork Wed May 21 15:15:44 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 63475 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id B98CDC2D0CD for ; Wed, 21 May 2025 15:16:02 +0000 (UTC) Received: from mailout02.t-online.de (mailout02.t-online.de [194.25.134.17]) by mx.groups.io with SMTP id smtpd.web10.1699.1747840553883076447 for ; Wed, 21 May 2025 08:15:54 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.17, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout02.t-online.de (Postfix) with SMTP id 284E2111E for ; Wed, 21 May 2025 17:15:52 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([84.163.33.59]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1uHlAd-1s573J0; Wed, 21 May 2025 17:15:51 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-oe][PATCH] libsdl2-compat: use nonarch_libdir Date: Wed, 21 May 2025 17:15:44 +0200 Message-ID: <20250521151544.3831931-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.49.0 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1747840551-9EFFB517-4A41C874/0/0 CLEAN NORMAL X-TOI-MSGID: 1d52ca65-1fd4-4b73-bc4d-f94dd4a7121d List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 21 May 2025 15:16:02 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/117573 Use nonarch_libdir for do_install:append This should prevent a possible multilib issue Signed-off-by: Markus Volk --- meta-oe/recipes-graphics/libsdl3/libsdl2-compat_2.32.56.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-graphics/libsdl3/libsdl2-compat_2.32.56.bb b/meta-oe/recipes-graphics/libsdl3/libsdl2-compat_2.32.56.bb index 7e3a06f34f..1d46ebf511 100644 --- a/meta-oe/recipes-graphics/libsdl3/libsdl2-compat_2.32.56.bb +++ b/meta-oe/recipes-graphics/libsdl3/libsdl2-compat_2.32.56.bb @@ -23,7 +23,7 @@ inherit cmake pkgconfig upstream-version-is-even features_check REQUIRED_DISTRO_FEATURES = "opengl x11" do_install:append() { - mv ${D}${libdir}/pkgconfig/sdl2-compat.pc ${D}${libdir}/pkgconfig/sdl2.pc + mv ${D}${nonarch_libdir}/pkgconfig/sdl2-compat.pc ${D}${nonarch_libdir}/pkgconfig/sdl2.pc } FILES:${PN} += "${datadir}/licenses"