diff options
author | Matt Turner <mattst88@gentoo.org> | 2021-01-14 19:56:41 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-01-14 20:34:27 -0500 |
commit | 3a4de1a00cc1f5de3feb0956bccf7b5cd908f921 (patch) | |
tree | faa5b717dd018fb7986202ce0df8704c909dbf47 /media-libs/mesa/mesa-9999.ebuild | |
parent | app-text/dvisvgm: fix other dependencies (diff) | |
download | gentoo-3a4de1a00cc1f5de3feb0956bccf7b5cd908f921.tar.gz gentoo-3a4de1a00cc1f5de3feb0956bccf7b5cd908f921.tar.bz2 gentoo-3a4de1a00cc1f5de3feb0956bccf7b5cd908f921.zip |
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 <mattst88@gentoo.org>
Diffstat (limited to 'media-libs/mesa/mesa-9999.ebuild')
-rw-r--r-- | media-libs/mesa/mesa-9999.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index 152e9ea51a87..1a2ca6e33b86 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) |