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 59169138359 for ; Wed, 29 Jul 2020 20:55:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6BD13E08FE; Wed, 29 Jul 2020 20:55:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 5099CE087A for ; Wed, 29 Jul 2020 20:55:50 +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 4530734EE13 for ; Wed, 29 Jul 2020 20:55:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 659B8275 for ; Wed, 29 Jul 2020 20:55:45 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1596056119.bce6b540deae1d2ba0b0ecec0c07b573c2d0b8bc.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mesa/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/mesa/mesa-20.0.8.ebuild media-libs/mesa/mesa-20.1.4.ebuild media-libs/mesa/mesa-9999.ebuild X-VCS-Directories: media-libs/mesa/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: bce6b540deae1d2ba0b0ecec0c07b573c2d0b8bc X-VCS-Branch: master Date: Wed, 29 Jul 2020 20:55:45 +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: 1294f0e0-26c6-4da7-bafd-16704d2a564d X-Archives-Hash: e15074aec22a527b00a35a82e9cd7fef commit: bce6b540deae1d2ba0b0ecec0c07b573c2d0b8bc Author: Matt Turner gentoo org> AuthorDate: Wed Jul 29 20:25:36 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Jul 29 20:55:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce6b540 media-libs/mesa: Fix logic error Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-20.0.8.ebuild | 6 +++--- media-libs/mesa/mesa-20.1.4.ebuild | 6 +++--- media-libs/mesa/mesa-9999.ebuild | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/media-libs/mesa/mesa-20.0.8.ebuild b/media-libs/mesa/mesa-20.0.8.ebuild index 8f36372581b..f8e02ddc8cd 100644 --- a/media-libs/mesa/mesa-20.0.8.ebuild +++ b/media-libs/mesa/mesa-20.0.8.ebuild @@ -334,9 +334,9 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - if ! use video_cards_i965 && - ! use video_cards_iris && - ! use video_cards_radeonsi; then + if use video_cards_i965 || + use video_cards_iris || + use video_cards_radeonsi; then CONFIG_CHECK="~CHECKPOINT_RESTORE" linux-info_pkg_setup fi diff --git a/media-libs/mesa/mesa-20.1.4.ebuild b/media-libs/mesa/mesa-20.1.4.ebuild index db0a161452c..058a206a5ff 100644 --- a/media-libs/mesa/mesa-20.1.4.ebuild +++ b/media-libs/mesa/mesa-20.1.4.ebuild @@ -334,9 +334,9 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - if ! use video_cards_i965 && - ! use video_cards_iris && - ! use video_cards_radeonsi; then + if use video_cards_i965 || + use video_cards_iris || + use video_cards_radeonsi; then CONFIG_CHECK="~CHECKPOINT_RESTORE" linux-info_pkg_setup fi diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index 1e78bcd122f..01dccc1bdd2 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -333,9 +333,9 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - if ! use video_cards_i965 && - ! use video_cards_iris && - ! use video_cards_radeonsi; then + if use video_cards_i965 || + use video_cards_iris || + use video_cards_radeonsi; then CONFIG_CHECK="~CHECKPOINT_RESTORE" linux-info_pkg_setup fi