From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-929924-garchives=archives.gentoo.org@lists.gentoo.org> 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 E61BC139085 for <garchives@archives.gentoo.org>; Tue, 7 Feb 2017 11:51:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEB0C21C038; Tue, 7 Feb 2017 11:51:11 +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 A8B6021C038 for <gentoo-commits@lists.gentoo.org>; Tue, 7 Feb 2017 11:51:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 579E934169B for <gentoo-commits@lists.gentoo.org>; Tue, 7 Feb 2017 11:51:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FCAA3B8E for <gentoo-commits@lists.gentoo.org>; Tue, 7 Feb 2017 11:51:08 +0000 (UTC) From: "Alexis Ballier" <aballier@gentoo.org> 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" <aballier@gentoo.org> Message-ID: <1486467774.82046cbe719bed8ca113520e3d1da60f5675c7d7.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/x265/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/x265/x265-2.2.ebuild media-libs/x265/x265-9999.ebuild X-VCS-Directories: media-libs/x265/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 82046cbe719bed8ca113520e3d1da60f5675c7d7 X-VCS-Branch: master Date: Tue, 7 Feb 2017 11:51:08 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2306d344-5894-47c6-8c51-bf914a8b41ea X-Archives-Hash: 3f4b5768218e63bbae49165c8257f901 commit: 82046cbe719bed8ca113520e3d1da60f5675c7d7 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org> AuthorDate: Tue Feb 7 11:42:54 2017 +0000 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org> CommitDate: Tue Feb 7 11:42:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82046cbe media-libs/x265: Use proper variable for en/disabling neon. Package-Manager: Portage-2.3.3, Repoman-2.3.1 media-libs/x265/x265-2.2.ebuild | 2 +- media-libs/x265/x265-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/x265/x265-2.2.ebuild b/media-libs/x265/x265-2.2.ebuild index ac326ae..a53a6c0 100644 --- a/media-libs/x265/x265-2.2.ebuild +++ b/media-libs/x265/x265-2.2.ebuild @@ -145,7 +145,7 @@ multilib_src_configure() { # bug #510890 myabicmakeargs+=( -DENABLE_ASSEMBLY=OFF ) elif [[ ${ABI} = arm ]] ; then - mycmakeargs+=( -DENABLE_ASSEMBLY=$(usex neon ON OFF) ) + myabicmakeargs+=( -DENABLE_ASSEMBLY=$(usex neon ON OFF) ) fi local MULTIBUILD_VARIANTS=( $(x265_get_variants) ) diff --git a/media-libs/x265/x265-9999.ebuild b/media-libs/x265/x265-9999.ebuild index 9edba39..3e2490c 100644 --- a/media-libs/x265/x265-9999.ebuild +++ b/media-libs/x265/x265-9999.ebuild @@ -145,7 +145,7 @@ multilib_src_configure() { # bug #510890 myabicmakeargs+=( -DENABLE_ASSEMBLY=OFF ) elif [[ ${ABI} = arm ]] ; then - mycmakeargs+=( -DENABLE_ASSEMBLY=$(usex neon ON OFF) ) + myabicmakeargs+=( -DENABLE_ASSEMBLY=$(usex neon ON OFF) ) fi local MULTIBUILD_VARIANTS=( $(x265_get_variants) )