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 D1B431396DA for ; Fri, 17 Nov 2017 23:13:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B50B0E0BE9; Fri, 17 Nov 2017 23:13:38 +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 9100BE0BE9 for ; Fri, 17 Nov 2017 23:13:38 +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 1C3F433BF51 for ; Fri, 17 Nov 2017 23:13:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A63889E58 for ; Fri, 17 Nov 2017 23:13:35 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1510960397.8368af594a23150a95d5a1a6e19ec0ec3b7edd15.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/tvheadend/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-tv/tvheadend/tvheadend-4.0.9.ebuild media-tv/tvheadend/tvheadend-9999.ebuild X-VCS-Directories: media-tv/tvheadend/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 8368af594a23150a95d5a1a6e19ec0ec3b7edd15 X-VCS-Branch: master Date: Fri, 17 Nov 2017 23:13:35 +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-Archives-Salt: 7b0aa5bd-71b1-479c-ac80-1582405fa256 X-Archives-Hash: b78c4b6de58b4edaa704a18407f0a561 commit: 8368af594a23150a95d5a1a6e19ec0ec3b7edd15 Author: James Le Cuirot gentoo org> AuthorDate: Fri Nov 17 23:13:17 2017 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Fri Nov 17 23:13:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8368af59 media-tv/tvheadend: Export CC during configure to fix cross-compiling CC isn't only used by the Makefile. Package-Manager: Portage-2.3.14, Repoman-2.3.6 media-tv/tvheadend/tvheadend-4.0.9.ebuild | 1 + media-tv/tvheadend/tvheadend-9999.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/media-tv/tvheadend/tvheadend-4.0.9.ebuild b/media-tv/tvheadend/tvheadend-4.0.9.ebuild index 8fe7e735272..d3627e8f13c 100644 --- a/media-tv/tvheadend/tvheadend-4.0.9.ebuild +++ b/media-tv/tvheadend/tvheadend-4.0.9.ebuild @@ -65,6 +65,7 @@ pkg_setup() { } src_configure() { + CC="$(tc-getCC)" \ econf --prefix="${EPREFIX}"/usr \ --datadir="${EPREFIX}"/usr/share \ --disable-ccache \ diff --git a/media-tv/tvheadend/tvheadend-9999.ebuild b/media-tv/tvheadend/tvheadend-9999.ebuild index ac205c566bb..e6779acb3c1 100644 --- a/media-tv/tvheadend/tvheadend-9999.ebuild +++ b/media-tv/tvheadend/tvheadend-9999.ebuild @@ -50,6 +50,7 @@ src_prepare() { } src_configure() { + CC="$(tc-getCC)" \ econf --prefix="${EPREFIX}"/usr \ --datadir="${EPREFIX}"/usr/share \ --disable-hdhomerun_static \