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 96CBD139695 for ; Tue, 18 Apr 2017 13:21:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A51C2E0DD4; Tue, 18 Apr 2017 13:21:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 83EC3E0DD4 for ; Tue, 18 Apr 2017 13:21:29 +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 DBB313416A5 for ; Tue, 18 Apr 2017 13:21:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 137D27435 for ; Tue, 18 Apr 2017 13:21:26 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1492521671.0603682dbcb28c52877652130f23b74f1a00ecd9.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/ffmpeg/ffmpeg-3.3.ebuild media-video/ffmpeg/ffmpeg-9999.ebuild X-VCS-Directories: media-video/ffmpeg/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 0603682dbcb28c52877652130f23b74f1a00ecd9 X-VCS-Branch: master Date: Tue, 18 Apr 2017 13:21:26 +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: 6a797cc1-1ccf-4e90-9ad2-790aefb89a3b X-Archives-Hash: 2cc58ce928ae20e79a77c8e9691ade08 commit: 0603682dbcb28c52877652130f23b74f1a00ecd9 Author: Alexis Ballier gentoo org> AuthorDate: Tue Apr 18 13:20:16 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue Apr 18 13:21:11 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0603682d media-video/ffmpeg: set hostcc when cross compiling Package-Manager: Portage-2.3.5, Repoman-2.3.2 media-video/ffmpeg/ffmpeg-3.3.ebuild | 2 +- media-video/ffmpeg/ffmpeg-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-video/ffmpeg/ffmpeg-3.3.ebuild b/media-video/ffmpeg/ffmpeg-3.3.ebuild index 0404912f5ac..5c66b742a78 100644 --- a/media-video/ffmpeg/ffmpeg-3.3.ebuild +++ b/media-video/ffmpeg/ffmpeg-3.3.ebuild @@ -402,7 +402,7 @@ multilib_src_configure() { # cross compile support if tc-is-cross-compiler ; then - myconf+=( --enable-cross-compile --arch=$(tc-arch-kernel) --cross-prefix=${CHOST}- ) + myconf+=( --enable-cross-compile --arch=$(tc-arch-kernel) --cross-prefix=${CHOST}- --host-cc="$(tc-getBUILD_CC)" ) case ${CHOST} in *freebsd*) myconf+=( --target-os=freebsd ) diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index 12172bafc68..c3bf69113f8 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -402,7 +402,7 @@ multilib_src_configure() { # cross compile support if tc-is-cross-compiler ; then - myconf+=( --enable-cross-compile --arch=$(tc-arch-kernel) --cross-prefix=${CHOST}- ) + myconf+=( --enable-cross-compile --arch=$(tc-arch-kernel) --cross-prefix=${CHOST}- --host-cc="$(tc-getBUILD_CC)" ) case ${CHOST} in *freebsd*) myconf+=( --target-os=freebsd )