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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5BEA11382C5 for ; Tue, 19 Jan 2021 14:48:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C84CE0877; Tue, 19 Jan 2021 14:48:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72A9AE0877 for ; Tue, 19 Jan 2021 14:48:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0AEAE340E10 for ; Tue, 19 Jan 2021 14:48:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E793309 for ; Tue, 19 Jan 2021 14:48:06 +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: <1611067620.702512674608c58428dbc6b2033ad11780bcffbb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/colm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/colm/colm-0.14.6.ebuild X-VCS-Directories: dev-util/colm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 702512674608c58428dbc6b2033ad11780bcffbb X-VCS-Branch: master Date: Tue, 19 Jan 2021 14:48:06 +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: 7a6db5d9-b797-4ab2-802b-2b2155cf1ab3 X-Archives-Hash: 2f775c1b74f7b968aa329ffac1c4a17e commit: 702512674608c58428dbc6b2033ad11780bcffbb Author: Sam James gentoo org> AuthorDate: Tue Jan 19 14:46:45 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 19 14:47:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70251267 dev-util/colm: respect CC, CXX Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-util/colm/colm-0.14.6.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-util/colm/colm-0.14.6.ebuild b/dev-util/colm/colm-0.14.6.ebuild index 63ec4deec4a..2980fcd1012 100644 --- a/dev-util/colm/colm-0.14.6.ebuild +++ b/dev-util/colm/colm-0.14.6.ebuild @@ -29,6 +29,10 @@ src_prepare() { # bug #733426 sed -i -e 's/(\[ASCIIDOC\], \[asciidoc\], \[asciidoc\]/S([ASCIIDOC], [asciidoc asciidoctor]/' configure.ac || die + # bug #766069 + sed -i -e "s:gcc:$(tc-getCC):" test/colm.d/gentests.sh || die + sed -i -e "s:g++:$(tc-getCXX):" test/colm.d/gentests.sh || die + eautoreconf }