diff options
author | Matt Turner <mattst88@gentoo.org> | 2020-07-29 13:25:36 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2020-07-29 13:55:19 -0700 |
commit | bce6b540deae1d2ba0b0ecec0c07b573c2d0b8bc (patch) | |
tree | f28c3183e04e7a3f468d53bcdf86488eeab1435b /media-libs/mesa | |
parent | dev-db/mariadb: fix NUMA patch (diff) | |
download | gentoo-bce6b540deae1d2ba0b0ecec0c07b573c2d0b8bc.tar.gz gentoo-bce6b540deae1d2ba0b0ecec0c07b573c2d0b8bc.tar.bz2 gentoo-bce6b540deae1d2ba0b0ecec0c07b573c2d0b8bc.zip |
media-libs/mesa: Fix logic error
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'media-libs/mesa')
-rw-r--r-- | media-libs/mesa/mesa-20.0.8.ebuild | 6 | ||||
-rw-r--r-- | media-libs/mesa/mesa-20.1.4.ebuild | 6 | ||||
-rw-r--r-- | 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 8f36372581b6..f8e02ddc8cdb 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 db0a161452c1..058a206a5ffe 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 1e78bcd122f8..01dccc1bdd2a 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 |