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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D4FD6158041 for ; Mon, 25 Mar 2024 15:24:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19691E2A2C; Mon, 25 Mar 2024 15:24:23 +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 E5175E2A2C for ; Mon, 25 Mar 2024 15:24:22 +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 E1A9E34300C for ; Mon, 25 Mar 2024 15:24:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82EFEB29 for ; Mon, 25 Mar 2024 15:24:20 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1711380239.36b6feea6d79823b991a4e68d1f62c86d8fc13ec.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/texlive-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/texlive-core/texlive-core-2023-r5.ebuild X-VCS-Directories: app-text/texlive-core/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 36b6feea6d79823b991a4e68d1f62c86d8fc13ec X-VCS-Branch: master Date: Mon, 25 Mar 2024 15:24:20 +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: fb3d025b-150b-46d9-a927-82ffd478db35 X-Archives-Hash: cc722f1f6e108397a59a7872d3cb61a9 commit: 36b6feea6d79823b991a4e68d1f62c86d8fc13ec Author: Florian Schmaus gentoo org> AuthorDate: Mon Mar 25 15:22:40 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Mar 25 15:23:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36b6feea app-text/texlive-core: use tc-getPKG_CONFIG This hopefully fixes installation on prefix systems (bug #927449), where we should now pick-up the prefix varaint of pkg-config. Bug: https://bugs.gentoo.org/927449 Signed-off-by: Florian Schmaus gentoo.org> app-text/texlive-core/texlive-core-2023-r5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-text/texlive-core/texlive-core-2023-r5.ebuild b/app-text/texlive-core/texlive-core-2023-r5.ebuild index 0baed94ace9b..8be340a3ea15 100644 --- a/app-text/texlive-core/texlive-core-2023-r5.ebuild +++ b/app-text/texlive-core/texlive-core-2023-r5.ebuild @@ -216,7 +216,7 @@ src_prepare() { cd "${S}" || die sed -i \ - -e "s,/usr/include /usr/local/include.*echo \$KPATHSEA_INCLUDES.*,$(pkg-config kpathsea --variable=includedir)\"," \ + -e "s,/usr/include /usr/local/include.*echo \$KPATHSEA_INCLUDES.*,$($(tc-getPKG_CONFIG) kpathsea --variable=includedir)\"," \ texk/web2c/configure || die local patch_dir="${WORKDIR}/tex-patches-${GENTOO_TEX_PATCHES_NUM}"