From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CB59F1581F0 for ; Sat, 14 Dec 2024 16:00:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D26FBE09B7; Sat, 14 Dec 2024 16:00:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B5DD1E09B7 for ; Sat, 14 Dec 2024 16:00:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0932335C0F for ; Sat, 14 Dec 2024 16:00:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43911159E for ; Sat, 14 Dec 2024 16:00:43 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1734192006.047fe21fd7723dc0c9b0a9cf07c77b1cf7f290ae.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/glib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/glib/glib-2.80.5.ebuild dev-libs/glib/glib-2.82.2.ebuild X-VCS-Directories: dev-libs/glib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 047fe21fd7723dc0c9b0a9cf07c77b1cf7f290ae X-VCS-Branch: master Date: Sat, 14 Dec 2024 16:00:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 28e8c423-9496-423c-9abc-4846fba8427f X-Archives-Hash: 856d63a6d1996b8b3047557dddf89f2a commit: 047fe21fd7723dc0c9b0a9cf07c77b1cf7f290ae Author: Sam James gentoo org> AuthorDate: Sat Dec 14 16:00:06 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 14 16:00:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=047fe21f dev-libs/glib: fix INTROSPECTION_{BIN,LIB}_DIR for prefix Closes: https://bugs.gentoo.org/946134 Signed-off-by: Sam James gentoo.org> dev-libs/glib/glib-2.80.5.ebuild | 4 ++-- dev-libs/glib/glib-2.82.2.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/glib/glib-2.80.5.ebuild b/dev-libs/glib/glib-2.80.5.ebuild index fa2ecf79c4e2..d27759baf6d3 100644 --- a/dev-libs/glib/glib-2.80.5.ebuild +++ b/dev-libs/glib/glib-2.80.5.ebuild @@ -214,8 +214,8 @@ multilib_src_configure() { # Build internal copy of gobject-introspection to avoid circular dependency (Built for native abi only) if multilib_native_use introspection && ! has_version ">=dev-libs/${INTROSPECTION_P}" ; then einfo "Bootstrapping gobject-introspection..." - INTROSPECTION_BIN_DIR="${T}/usr/bin" - INTROSPECTION_LIB_DIR="${T}/usr/$(get_libdir)" + INTROSPECTION_BIN_DIR="${T}/${EPREFIX}/usr/bin" + INTROSPECTION_LIB_DIR="${T}/${EPREFIX}/usr/$(get_libdir)" local emesonargs=( -Dpython="${EPYTHON}" diff --git a/dev-libs/glib/glib-2.82.2.ebuild b/dev-libs/glib/glib-2.82.2.ebuild index 5ae7e17ed0ad..16ca673a8268 100644 --- a/dev-libs/glib/glib-2.82.2.ebuild +++ b/dev-libs/glib/glib-2.82.2.ebuild @@ -214,8 +214,8 @@ multilib_src_configure() { # Build internal copy of gobject-introspection to avoid circular dependency (Built for native abi only) if multilib_native_use introspection && ! has_version ">=dev-libs/${INTROSPECTION_P}" ; then einfo "Bootstrapping gobject-introspection..." - INTROSPECTION_BIN_DIR="${T}/usr/bin" - INTROSPECTION_LIB_DIR="${T}/usr/$(get_libdir)" + INTROSPECTION_BIN_DIR="${T}/${EPREFIX}/usr/bin" + INTROSPECTION_LIB_DIR="${T}/${EPREFIX}/usr/$(get_libdir)" local emesonargs=( -Dpython="${EPYTHON}"