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 AB4751581F3 for ; Tue, 3 Dec 2024 08:14:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 025A1E07E1; Tue, 3 Dec 2024 08:14:01 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D6176E07D7 for ; Tue, 3 Dec 2024 08:14:00 +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 87259340C57 for ; Tue, 3 Dec 2024 08:13:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 137A713F5 for ; Tue, 3 Dec 2024 08:13:58 +0000 (UTC) From: "Nicolas PARLANT" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas PARLANT" Message-ID: <1733213636.e69f17d4edb9ed7f5e8940fc37acfcd6167d4d3c.ppn@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-lua/cqueues/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lua/cqueues/cqueues-20200726.ebuild X-VCS-Directories: dev-lua/cqueues/ X-VCS-Committer: ppn X-VCS-Committer-Name: Nicolas PARLANT X-VCS-Revision: e69f17d4edb9ed7f5e8940fc37acfcd6167d4d3c X-VCS-Branch: dev Date: Tue, 3 Dec 2024 08:13:58 +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: a586d1ab-6ebb-4eb7-82a8-c93471996271 X-Archives-Hash: ab64dd54afe899145f39a76ec3270263 commit: e69f17d4edb9ed7f5e8940fc37acfcd6167d4d3c Author: Nicolas PARLANT parhuet fr> AuthorDate: Tue Dec 3 08:12:50 2024 +0000 Commit: Nicolas PARLANT parhuet fr> CommitDate: Tue Dec 3 08:13:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e69f17d4 dev-lua/cqueues: fix calling ar/ranlib directly Closes: https://bugs.gentoo.org/945787 Signed-off-by: Nicolas PARLANT parhuet.fr> dev-lua/cqueues/cqueues-20200726.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-lua/cqueues/cqueues-20200726.ebuild b/dev-lua/cqueues/cqueues-20200726.ebuild index d6caa4f84..4cd068753 100644 --- a/dev-lua/cqueues/cqueues-20200726.ebuild +++ b/dev-lua/cqueues/cqueues-20200726.ebuild @@ -64,6 +64,8 @@ lua_src_compile() { fi emake CC="$(tc-getCC)" \ + AR="$(tc-getAR)" \ + RANLIB="$(tc-getRANLIB)" \ ALL_CFLAGS="${CFLAGS} -std=gnu99 -fPIC $(lua_get_CFLAGS)" \ ALL_CPPFLAGS="${CPPFLAGS} -D_GNU_SOURCE" \ ALL_SOFLAGS="${SOFLAGS} -shared" \