From 081aa09aeb2139505ac80a3a854cf26a79f294c5 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Tue, 3 Jun 2025 12:49:30 +0200 Subject: [PATCH] meson: drop unnecessary `-D legacy-x11=none` Array options are allowed to be empty, so there's no need to add an extra value to convey that. Part-of: --- meson.options | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.options b/meson.options index 7bfe94abf41..d0bfcbc961b 100644 --- a/meson.options +++ b/meson.options @@ -780,10 +780,10 @@ option( option( 'legacy-x11', type : 'array', - value : ['none'], + value : [], description : 'Build legacy X11 support features.', choices : [ - 'none', 'dri2' + 'dri2' ], )