From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3C08959CA3 for ; Fri, 11 Mar 2016 20:09:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E94AE07FE; Fri, 11 Mar 2016 20:09:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 BF0F1E07FE for ; Fri, 11 Mar 2016 20:09:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3474E340C33 for ; Fri, 11 Mar 2016 20:09:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0117C8E9 for ; Fri, 11 Mar 2016 20:09:32 +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: <1457726957.0ad2a95a4188fd99800f9a6a1b73a37c55b70ade.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-2.6.3.ebuild media-video/ffmpeg/ffmpeg-2.6.4.ebuild media-video/ffmpeg/ffmpeg-2.8.5.ebuild media-video/ffmpeg/ffmpeg-2.8.6.ebuild media-video/ffmpeg/ffmpeg-3.0.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: 0ad2a95a4188fd99800f9a6a1b73a37c55b70ade X-VCS-Branch: master Date: Fri, 11 Mar 2016 20:09:32 +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: 23ac54ae-b256-4e5d-91e8-abc18c51cb60 X-Archives-Hash: 44ee3ebbadbd402e9d769e658e24e7f9 commit: 0ad2a95a4188fd99800f9a6a1b73a37c55b70ade Author: Alexis Ballier gentoo org> AuthorDate: Fri Mar 11 20:09:00 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Fri Mar 11 20:09:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ad2a95a media-video/ffmpeg: Do not infer --cpu option from mtune CFLAG. mtune is meant for optimizing code but not generating specific instructions. ffmpeg --cpu option is for generating specific instuctions. Bug #577078 by gentoobugs mysteryvortex.com. Package-Manager: portage-2.2.28 Signed-off-by: Alexis Ballier gentoo.org> media-video/ffmpeg/ffmpeg-2.6.3.ebuild | 2 +- media-video/ffmpeg/ffmpeg-2.6.4.ebuild | 2 +- media-video/ffmpeg/ffmpeg-2.8.5.ebuild | 2 +- media-video/ffmpeg/ffmpeg-2.8.6.ebuild | 2 +- media-video/ffmpeg/ffmpeg-3.0.ebuild | 2 +- media-video/ffmpeg/ffmpeg-9999.ebuild | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/media-video/ffmpeg/ffmpeg-2.6.3.ebuild b/media-video/ffmpeg/ffmpeg-2.6.3.ebuild index 3593fbd..146a372 100644 --- a/media-video/ffmpeg/ffmpeg-2.6.3.ebuild +++ b/media-video/ffmpeg/ffmpeg-2.6.3.ebuild @@ -364,7 +364,7 @@ multilib_src_configure() { # We need to do this so that features of that CPU will be better used # If they contain an unknown CPU it will not hurt since ffmpeg's configure # will just ignore it. - for i in $(get-flag mcpu) $(get-flag march) $(get-flag mtune) ; do + for i in $(get-flag mcpu) $(get-flag march) ; do [[ ${i} = native ]] && i="host" # bug #273421 myconf+=( --cpu=${i} ) break diff --git a/media-video/ffmpeg/ffmpeg-2.6.4.ebuild b/media-video/ffmpeg/ffmpeg-2.6.4.ebuild index 4432056..4cfdb94 100644 --- a/media-video/ffmpeg/ffmpeg-2.6.4.ebuild +++ b/media-video/ffmpeg/ffmpeg-2.6.4.ebuild @@ -364,7 +364,7 @@ multilib_src_configure() { # We need to do this so that features of that CPU will be better used # If they contain an unknown CPU it will not hurt since ffmpeg's configure # will just ignore it. - for i in $(get-flag mcpu) $(get-flag march) $(get-flag mtune) ; do + for i in $(get-flag mcpu) $(get-flag march) ; do [[ ${i} = native ]] && i="host" # bug #273421 myconf+=( --cpu=${i} ) break diff --git a/media-video/ffmpeg/ffmpeg-2.8.5.ebuild b/media-video/ffmpeg/ffmpeg-2.8.5.ebuild index cd122a6..9d52036 100644 --- a/media-video/ffmpeg/ffmpeg-2.8.5.ebuild +++ b/media-video/ffmpeg/ffmpeg-2.8.5.ebuild @@ -369,7 +369,7 @@ multilib_src_configure() { # We need to do this so that features of that CPU will be better used # If they contain an unknown CPU it will not hurt since ffmpeg's configure # will just ignore it. - for i in $(get-flag mcpu) $(get-flag march) $(get-flag mtune) ; do + for i in $(get-flag mcpu) $(get-flag march) ; do [[ ${i} = native ]] && i="host" # bug #273421 myconf+=( --cpu=${i} ) break diff --git a/media-video/ffmpeg/ffmpeg-2.8.6.ebuild b/media-video/ffmpeg/ffmpeg-2.8.6.ebuild index 5737bce..ef2179d 100644 --- a/media-video/ffmpeg/ffmpeg-2.8.6.ebuild +++ b/media-video/ffmpeg/ffmpeg-2.8.6.ebuild @@ -369,7 +369,7 @@ multilib_src_configure() { # We need to do this so that features of that CPU will be better used # If they contain an unknown CPU it will not hurt since ffmpeg's configure # will just ignore it. - for i in $(get-flag mcpu) $(get-flag march) $(get-flag mtune) ; do + for i in $(get-flag mcpu) $(get-flag march) ; do [[ ${i} = native ]] && i="host" # bug #273421 myconf+=( --cpu=${i} ) break diff --git a/media-video/ffmpeg/ffmpeg-3.0.ebuild b/media-video/ffmpeg/ffmpeg-3.0.ebuild index 9fbf3ef..fd5dd6f 100644 --- a/media-video/ffmpeg/ffmpeg-3.0.ebuild +++ b/media-video/ffmpeg/ffmpeg-3.0.ebuild @@ -370,7 +370,7 @@ multilib_src_configure() { # We need to do this so that features of that CPU will be better used # If they contain an unknown CPU it will not hurt since ffmpeg's configure # will just ignore it. - for i in $(get-flag mcpu) $(get-flag march) $(get-flag mtune) ; do + for i in $(get-flag mcpu) $(get-flag march) ; do [[ ${i} = native ]] && i="host" # bug #273421 myconf+=( --cpu=${i} ) break diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index 31e8355..c97b7cc 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -370,7 +370,7 @@ multilib_src_configure() { # We need to do this so that features of that CPU will be better used # If they contain an unknown CPU it will not hurt since ffmpeg's configure # will just ignore it. - for i in $(get-flag mcpu) $(get-flag march) $(get-flag mtune) ; do + for i in $(get-flag mcpu) $(get-flag march) ; do [[ ${i} = native ]] && i="host" # bug #273421 myconf+=( --cpu=${i} ) break