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 8ED06138359 for ; Wed, 29 Jul 2020 13:31:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE02EE0AC1; Wed, 29 Jul 2020 13:31:56 +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 B43F0E0AC1 for ; Wed, 29 Jul 2020 13:31:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 80B1034F26E for ; Wed, 29 Jul 2020 13:31:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A7B62F1 for ; Wed, 29 Jul 2020 13:31:54 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1596029506.be45d095f11086a83ebb40d763b42b1431673632.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vlc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/vlc/vlc-3.0.10-r1.ebuild media-video/vlc/vlc-3.0.11.1.ebuild media-video/vlc/vlc-3.0.11.ebuild media-video/vlc/vlc-3.0.9999.ebuild media-video/vlc/vlc-9999.ebuild X-VCS-Directories: media-video/vlc/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: be45d095f11086a83ebb40d763b42b1431673632 X-VCS-Branch: master Date: Wed, 29 Jul 2020 13:31:54 +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: e44ce953-2e39-44b9-bc8f-d6392fb1682d X-Archives-Hash: 5469834de3e22a1eb94256d30e0fd9d3 commit: be45d095f11086a83ebb40d763b42b1431673632 Author: Thomas Deutschmann gentoo org> AuthorDate: Wed Jul 29 13:31:25 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Wed Jul 29 13:31:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be45d095 media-video/vlc: don't call tc directly Closes: https://bugs.gentoo.org/728724 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Thomas Deutschmann gentoo.org> media-video/vlc/vlc-3.0.10-r1.ebuild | 2 ++ media-video/vlc/vlc-3.0.11.1.ebuild | 2 ++ media-video/vlc/vlc-3.0.11.ebuild | 2 ++ media-video/vlc/vlc-3.0.9999.ebuild | 2 ++ media-video/vlc/vlc-9999.ebuild | 2 ++ 5 files changed, 10 insertions(+) diff --git a/media-video/vlc/vlc-3.0.10-r1.ebuild b/media-video/vlc/vlc-3.0.10-r1.ebuild index 4ba64203f45..3e8e9eef5c7 100644 --- a/media-video/vlc/vlc-3.0.10-r1.ebuild +++ b/media-video/vlc/vlc-3.0.10-r1.ebuild @@ -267,6 +267,8 @@ src_prepare() { } src_configure() { + local -x BUILDCC=$(tc-getBUILD_CC) + local myeconfargs=( --disable-aa --disable-optimizations diff --git a/media-video/vlc/vlc-3.0.11.1.ebuild b/media-video/vlc/vlc-3.0.11.1.ebuild index 926e7eda205..c88bc2c4ce2 100644 --- a/media-video/vlc/vlc-3.0.11.1.ebuild +++ b/media-video/vlc/vlc-3.0.11.1.ebuild @@ -267,6 +267,8 @@ src_prepare() { } src_configure() { + local -x BUILDCC=$(tc-getBUILD_CC) + local myeconfargs=( --disable-aa --disable-optimizations diff --git a/media-video/vlc/vlc-3.0.11.ebuild b/media-video/vlc/vlc-3.0.11.ebuild index fd2b076ff7e..b8d9427fbad 100644 --- a/media-video/vlc/vlc-3.0.11.ebuild +++ b/media-video/vlc/vlc-3.0.11.ebuild @@ -267,6 +267,8 @@ src_prepare() { } src_configure() { + local -x BUILDCC=$(tc-getBUILD_CC) + local myeconfargs=( --disable-aa --disable-optimizations diff --git a/media-video/vlc/vlc-3.0.9999.ebuild b/media-video/vlc/vlc-3.0.9999.ebuild index 926e7eda205..c88bc2c4ce2 100644 --- a/media-video/vlc/vlc-3.0.9999.ebuild +++ b/media-video/vlc/vlc-3.0.9999.ebuild @@ -267,6 +267,8 @@ src_prepare() { } src_configure() { + local -x BUILDCC=$(tc-getBUILD_CC) + local myeconfargs=( --disable-aa --disable-optimizations diff --git a/media-video/vlc/vlc-9999.ebuild b/media-video/vlc/vlc-9999.ebuild index 4721bdb00aa..c501e315737 100644 --- a/media-video/vlc/vlc-9999.ebuild +++ b/media-video/vlc/vlc-9999.ebuild @@ -269,6 +269,8 @@ src_prepare() { } src_configure() { + local -x BUILDCC=$(tc-getBUILD_CC) + local myeconfargs=( --disable-optimizations --disable-rpath