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 DEF86138334 for ; Wed, 20 Nov 2019 19:28:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07A61E0870; Wed, 20 Nov 2019 19:28:46 +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 D46A9E0870 for ; Wed, 20 Nov 2019 19:28:45 +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 3994834D15B for ; Wed, 20 Nov 2019 19:28:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D5B68B4 for ; Wed, 20 Nov 2019 19:28:41 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1574278097.421b6f443ceceb7f50d1802845c0a169c7257d1e.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libvpx/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libvpx/libvpx-1.7.0.ebuild media-libs/libvpx/libvpx-1.8.0-r1.ebuild media-libs/libvpx/libvpx-1.8.0.ebuild X-VCS-Directories: media-libs/libvpx/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 421b6f443ceceb7f50d1802845c0a169c7257d1e X-VCS-Branch: master Date: Wed, 20 Nov 2019 19:28:41 +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: 14b30f27-ab03-481e-b7b8-528c20972099 X-Archives-Hash: ae3b98534d436f6e318f1565047692ab commit: 421b6f443ceceb7f50d1802845c0a169c7257d1e Author: Stephan Hartmann googlemail com> AuthorDate: Tue Nov 19 15:59:08 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Nov 20 19:28:17 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=421b6f44 media-libs/libvpx: fix building on ppc Closes: https://bugs.gentoo.org/694368 Thanks-to: ernsteiswuerfel mailbox.org> Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Stephan Hartmann googlemail.com> Signed-off-by: Mike Gilbert gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/13714 media-libs/libvpx/libvpx-1.7.0.ebuild | 3 +++ media-libs/libvpx/libvpx-1.8.0-r1.ebuild | 3 +++ media-libs/libvpx/libvpx-1.8.0.ebuild | 3 +++ 3 files changed, 9 insertions(+) diff --git a/media-libs/libvpx/libvpx-1.7.0.ebuild b/media-libs/libvpx/libvpx-1.7.0.ebuild index 877d221cedb..752360e5cbe 100644 --- a/media-libs/libvpx/libvpx-1.7.0.ebuild +++ b/media-libs/libvpx/libvpx-1.7.0.ebuild @@ -95,6 +95,9 @@ multilib_src_configure() { x86_64*) export AS=yasm;; esac + # powerpc toolchain is not recognized anymore, #694368 + [[ ${CHOST} == powerpc-* ]] && myconfargs+=( --force-target=generic-gnu ) + # Build with correct toolchain. tc-export CC CXX AR NM # Link with gcc by default, the build system should override this if needed. diff --git a/media-libs/libvpx/libvpx-1.8.0-r1.ebuild b/media-libs/libvpx/libvpx-1.8.0-r1.ebuild index 9c2b048cea4..f0bd9584749 100644 --- a/media-libs/libvpx/libvpx-1.8.0-r1.ebuild +++ b/media-libs/libvpx/libvpx-1.8.0-r1.ebuild @@ -84,6 +84,9 @@ multilib_src_configure() { x86_64*) export AS=yasm;; esac + # powerpc toolchain is not recognized anymore, #694368 + [[ ${CHOST} == powerpc-* ]] && myconfargs+=( --force-target=generic-gnu ) + # Build with correct toolchain. tc-export CC CXX AR NM # Link with gcc by default, the build system should override this if needed. diff --git a/media-libs/libvpx/libvpx-1.8.0.ebuild b/media-libs/libvpx/libvpx-1.8.0.ebuild index 5d7954ec89c..a05ed4eb72f 100644 --- a/media-libs/libvpx/libvpx-1.8.0.ebuild +++ b/media-libs/libvpx/libvpx-1.8.0.ebuild @@ -96,6 +96,9 @@ multilib_src_configure() { x86_64*) export AS=yasm;; esac + # powerpc toolchain is not recognized anymore, #694368 + [[ ${CHOST} == powerpc-* ]] && myconfargs+=( --force-target=generic-gnu ) + # Build with correct toolchain. tc-export CC CXX AR NM # Link with gcc by default, the build system should override this if needed.