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 ACC68138359 for ; Sun, 30 Aug 2020 19:44:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF85EE0ADE; Sun, 30 Aug 2020 19:44:20 +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 B1EC8E0ADE for ; Sun, 30 Aug 2020 19:44:20 +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 630BD340DE0 for ; Sun, 30 Aug 2020 19:44:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E354B2FD for ; Sun, 30 Aug 2020 19:44:17 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1598816650.9a9af3c630d780bbdcf6ced300008c6af2a078d3.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/editorconfig-geany/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild X-VCS-Directories: dev-util/editorconfig-geany/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 9a9af3c630d780bbdcf6ced300008c6af2a078d3 X-VCS-Branch: master Date: Sun, 30 Aug 2020 19:44:17 +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: 24f9fc74-4ca1-433f-ac6f-f5ad682cf6b7 X-Archives-Hash: 1786349a40ab53169121cc7abda0cdea commit: 9a9af3c630d780bbdcf6ced300008c6af2a078d3 Author: Zac Medico gentoo org> AuthorDate: Sun Aug 30 19:43:10 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Aug 30 19:44:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a9af3c6 dev-util/editorconfig-geany: Fix direct cc call Closes: https://bugs.gentoo.org/739666 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Zac Medico gentoo.org> dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild b/dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild index 3e1268e041e..cc715d422e3 100644 --- a/dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild +++ b/dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -23,6 +23,7 @@ S=${WORKDIR}/${PN}-${EGIT_COMMIT#v} src_prepare() { eapply_user sed -e "s|^\\(EDITORCONFIG_PREFIX =\\).*|\\1 ${EPREFIX}/usr|" \ + -e "s|\\bcc\\b|$(tc-getCC)|" \ -e "s|^\\(CFLAGS =\\).*|\\1 -fPIC $("$(tc-getPKG_CONFIG)" --cflags geany geany) ${CFLAGS}|" \ -e "s|^\\(LDFLAGS =.*\\)|\\1 ${LDFLAGS}|" \ -e "s|\`pkg-config[^\`]*\`||" \