Module: Mesa Branch: master Commit: 7c4423cce98f95c3ab7349b3f7abc4a558cb6c48 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7c4423cce98f95c3ab7349b3f7abc4a558cb6c48
Author: Eric Engestrom <[email protected]> Date: Mon Jun 4 11:26:10 2018 +0100 meson: fix platforms check for `-D egl=true` Fixes: 0ed6a87a106b6e2266e0 "meson: fix platforms=[]" Reported-by: Christoph Haag <[email protected]> Reviewed-by: Dylan Baker <[email protected]> Signed-off-by: Eric Engestrom <[email protected]> --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7b7c118d77..1d1b2a979b 100644 --- a/meson.build +++ b/meson.build @@ -292,7 +292,7 @@ elif _egl == 'true' error('EGL requires dri') elif not with_shared_glapi error('EGL requires shared-glapi') - elif with_platforms + elif not with_platforms error('No platforms specified, consider -Dplatforms=drm,x11 at least') elif not ['disabled', 'dri'].contains(with_glx) error('EGL requires dri, but a GLX is being built without dri') _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
