From fdc61c5a3cc2637a52928c8e2fd4d50118c7ffea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michel=20D=C3=A4nzer?= Date: Tue, 16 Feb 2021 15:46:04 +0100 Subject: [PATCH] meson: Simplify build_glamor logic Don't need the separate glamor_option variable anymore. Fixes: 274d54d1c387 "meson: Build Xwayland unconditionally" --- meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meson.build b/meson.build index a1a8a571d..f52659c1d 100644 --- a/meson.build +++ b/meson.build @@ -146,7 +146,7 @@ else default_font_path = dfp endif -glamor_option = get_option('glamor') +build_glamor = get_option('glamor') with_dtrace = get_option('dtrace') if with_dtrace @@ -154,7 +154,6 @@ if with_dtrace endif build_xwayland = true -build_glamor = glamor_option != 'false' xwayland_path = get_option('xwayland-path') if (xwayland_path == '')