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 5A6C91382C5 for ; Sun, 24 May 2020 09:31:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BA8FE0871; Sun, 24 May 2020 09:31:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3660BE0871 for ; Sun, 24 May 2020 09:31:24 +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 E697534F076 for ; Sun, 24 May 2020 09:31:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69723175 for ; Sun, 24 May 2020 09:31:21 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1590312674.c32effab9e41d89e9137a6b5b797eed65c4119a2.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild X-VCS-Directories: net-irc/iroffer-dinoex/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: c32effab9e41d89e9137a6b5b797eed65c4119a2 X-VCS-Branch: master Date: Sun, 24 May 2020 09:31:21 +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: 531a1fdc-0bc0-45c5-a435-50934240d194 X-Archives-Hash: 70255b7b66f24fe9bbd03577b4ea7976 commit: c32effab9e41d89e9137a6b5b797eed65c4119a2 Author: Mikle Kolyada gentoo org> AuthorDate: Sun May 24 09:30:50 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun May 24 09:31:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c32effab net-irc/iroffer-dinoex: respect CC Closes: https://bugs.gentoo.org/724966 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Mikle Kolyada gentoo.org> net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild | 3 ++- net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild | 3 ++- net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild | 5 +++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild index b5ef681e382..4779e79651e 100644 --- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild +++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.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=6 @@ -58,6 +58,7 @@ do_configure() { src_configure() { do_configure \ PREFIX="${EPREFIX}/usr"\ + CC="$(tc-getCC)"\ $(usex debug '-profiling' '' '' '')\ $(usex debug '-debug' '' '' '')\ $(usex geoip '-geoip' '' '' '')\ diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild index 2adfa45a9d8..deadec3b9cc 100644 --- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild +++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.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=6 @@ -57,6 +57,7 @@ do_configure() { src_configure() { do_configure \ + CC="$(tc-getCC)" PREFIX="${EPREFIX}/usr"\ $(usex debug '-profiling' '' '' '')\ $(usex debug '-debug' '' '' '')\ diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild index 2f525ffe3ff..a1293eaa5bb 100644 --- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild +++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.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=6 @@ -57,7 +57,8 @@ do_configure() { src_configure() { do_configure \ - PREFIX="${EPREFIX}/usr"\ + PREFIX="${EPREFIX}/usr" \ + CC="$(tc-getCC)" \ $(usex debug '-profiling' '' '' '')\ $(usex debug '-debug' '' '' '')\ $(usex geoip '-geoip' '' '' '')\