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 A3905158041 for ; Thu, 29 Feb 2024 16:48:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E250E2A7B; Thu, 29 Feb 2024 16:48:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 71A80E2A7B for ; Thu, 29 Feb 2024 16:48:09 +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 92879343099 for ; Thu, 29 Feb 2024 16:48:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2CAE014D7 for ; Thu, 29 Feb 2024 16:48:07 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1709225264.2d2ab59b783760f8ac0dc867833accb75971fb9d.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/mpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/mpack/mpack-1.0.12.ebuild X-VCS-Directories: dev-lua/mpack/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 2d2ab59b783760f8ac0dc867833accb75971fb9d X-VCS-Branch: master Date: Thu, 29 Feb 2024 16:48:07 +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: fc896b79-0013-41e6-a1e5-6f5b7ce49a0b X-Archives-Hash: e5229dfd1164cdb100cca00dba57c6fa commit: 2d2ab59b783760f8ac0dc867833accb75971fb9d Author: Matt Turner gentoo org> AuthorDate: Wed Feb 28 20:46:57 2024 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Feb 29 16:47:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d2ab59b dev-lua/mpack: Export PKG_CONFIG for src_compile The Makefile does this: > PKG_CONFIG ?= pkg-config so we need to export PKG_CONFIG to use the correct pkg-config binary when cross-compiling. Closes: https://github.com/gentoo/gentoo/pull/35572 Signed-off-by: Matt Turner gentoo.org> dev-lua/mpack/mpack-1.0.12.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-lua/mpack/mpack-1.0.12.ebuild b/dev-lua/mpack/mpack-1.0.12.ebuild index e724b86a46b8..0d3dc279196c 100644 --- a/dev-lua/mpack/mpack-1.0.12.ebuild +++ b/dev-lua/mpack/mpack-1.0.12.ebuild @@ -58,6 +58,7 @@ lua_src_compile() { } src_compile() { + tc-export PKG_CONFIG lua_foreach_impl lua_src_compile }