From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1020150-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 90E6F1382C5
	for <garchives@archives.gentoo.org>; Wed, 25 Apr 2018 13:43:19 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 8461DE087D;
	Wed, 25 Apr 2018 13:43:18 +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 5D2BCE087D
	for <gentoo-commits@lists.gentoo.org>; Wed, 25 Apr 2018 13:43:18 +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 6CFF0335C36
	for <gentoo-commits@lists.gentoo.org>; Wed, 25 Apr 2018 13:43:17 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 45207287
	for <gentoo-commits@lists.gentoo.org>; Wed, 25 Apr 2018 13:43:15 +0000 (UTC)
From: "Lars Wendler" <polynomial-c@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, "Lars Wendler" <polynomial-c@gentoo.org>
Message-ID: <1524663774.5022c8a9637194e7277cd406a5e1f1366f9b37c8.polynomial-c@gentoo>
Subject: [gentoo-commits] proj/mozilla:master commit in: www-client/firefox/
X-VCS-Repository: proj/mozilla
X-VCS-Files: www-client/firefox/firefox-59.0.2.ebuild
X-VCS-Directories: www-client/firefox/
X-VCS-Committer: polynomial-c
X-VCS-Committer-Name: Lars Wendler
X-VCS-Revision: 5022c8a9637194e7277cd406a5e1f1366f9b37c8
X-VCS-Branch: master
Date: Wed, 25 Apr 2018 13:43:15 +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: a5e12cb2-f1f0-4267-944a-287310e59d1d
X-Archives-Hash: 5ca6d514fb87fb1d25187f5c37a593cc

commit:     5022c8a9637194e7277cd406a5e1f1366f9b37c8
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 25 13:42:54 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Apr 25 13:42:54 2018 +0000
URL:        https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=5022c8a9

www-client/firefox: Attempt to fix inverted logic for USE="eme-free"

Bug: https://bugs.gentoo.org/654072
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Manifest-Sign-Key: 0x498FE765960E9B39

 www-client/firefox/firefox-59.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/firefox/firefox-59.0.2.ebuild b/www-client/firefox/firefox-59.0.2.ebuild
index 545e1ab..b29e5e4 100644
--- a/www-client/firefox/firefox-59.0.2.ebuild
+++ b/www-client/firefox/firefox-59.0.2.ebuild
@@ -192,7 +192,7 @@ src_configure() {
 	mozconfig_use_enable jack
 
 	# Enable/Disable eme support
-	mozconfig_use_enable eme-free eme
+	mozconfig_use_enable !eme-free eme
 
 	# It doesn't compile on alpha without this LDFLAGS
 	use alpha && append-ldflags "-Wl,--no-relax"