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 F33C11382C5 for ; Fri, 15 Jan 2021 01:34:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F415CE083D; Fri, 15 Jan 2021 01:34:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 D9E7BE083D for ; Fri, 15 Jan 2021 01:34:40 +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 6B762340E9C for ; Fri, 15 Jan 2021 01:34:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E3594B for ; Fri, 15 Jan 2021 01:34:37 +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: <1610674467.3a4de1a00cc1f5de3feb0956bccf7b5cd908f921.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.2.4.ebuild media-libs/mesa/mesa-20.2.6.ebuild media-libs/mesa/mesa-20.3.2.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: 3a4de1a00cc1f5de3feb0956bccf7b5cd908f921 X-VCS-Branch: master Date: Fri, 15 Jan 2021 01:34:37 +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: f953681b-cd4a-4c7d-8201-edb4689be84d X-Archives-Hash: 3199aa745615a47112e257315c4b5286 commit: 3a4de1a00cc1f5de3feb0956bccf7b5cd908f921 Author: Matt Turner gentoo org> AuthorDate: Fri Jan 15 00:56:41 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Jan 15 01:34:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a4de1a0 media-libs/mesa: Always specify -Dplatforms=... Otherwise it will default to -Dplatforms=auto, which includes Wayland. Many thanks to Jan Burgmeier for debugging the issue and providing the fix. Closes: https://bugs.gentoo.org/759139 Closes: https://bugs.gentoo.org/759319 Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-20.2.4.ebuild | 2 +- media-libs/mesa/mesa-20.2.6.ebuild | 2 +- media-libs/mesa/mesa-20.3.2.ebuild | 2 +- media-libs/mesa/mesa-9999.ebuild | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/media-libs/mesa/mesa-20.2.4.ebuild b/media-libs/mesa/mesa-20.2.4.ebuild index ca0dfceda9d..a9abb722e3f 100644 --- a/media-libs/mesa/mesa-20.2.4.ebuild +++ b/media-libs/mesa/mesa-20.2.4.ebuild @@ -369,7 +369,7 @@ multilib_src_configure() { local platforms use X && platforms+="x11" use wayland && platforms+=",wayland" - [[ -n $platforms ]] && emesonargs+=(-Dplatforms=${platforms#,}) + emesonargs+=(-Dplatforms=${platforms#,}) if use X || use egl; then emesonargs+=(-Dglvnd=true) diff --git a/media-libs/mesa/mesa-20.2.6.ebuild b/media-libs/mesa/mesa-20.2.6.ebuild index 87cd6143479..3a059a995dd 100644 --- a/media-libs/mesa/mesa-20.2.6.ebuild +++ b/media-libs/mesa/mesa-20.2.6.ebuild @@ -369,7 +369,7 @@ multilib_src_configure() { local platforms use X && platforms+="x11" use wayland && platforms+=",wayland" - [[ -n $platforms ]] && emesonargs+=(-Dplatforms=${platforms#,}) + emesonargs+=(-Dplatforms=${platforms#,}) if use X || use egl; then emesonargs+=(-Dglvnd=true) diff --git a/media-libs/mesa/mesa-20.3.2.ebuild b/media-libs/mesa/mesa-20.3.2.ebuild index 4a9d566b07c..3a23ce15ad2 100644 --- a/media-libs/mesa/mesa-20.3.2.ebuild +++ b/media-libs/mesa/mesa-20.3.2.ebuild @@ -370,7 +370,7 @@ multilib_src_configure() { local platforms use X && platforms+="x11" use wayland && platforms+=",wayland" - [[ -n $platforms ]] && emesonargs+=(-Dplatforms=${platforms#,}) + emesonargs+=(-Dplatforms=${platforms#,}) if use X || use egl; then emesonargs+=(-Dglvnd=true) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index 152e9ea51a8..1a2ca6e33b8 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -374,7 +374,7 @@ multilib_src_configure() { local platforms use X && platforms+="x11" use wayland && platforms+=",wayland" - [[ -n $platforms ]] && emesonargs+=(-Dplatforms=${platforms#,}) + emesonargs+=(-Dplatforms=${platforms#,}) if use X || use egl; then emesonargs+=(-Dglvnd=true)