summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2022-02-04 23:43:50 +0000
committerMarius Vlad <marius.vlad@collabora.com>2022-05-24 19:43:58 +0300
commita40ae68853d1ce18f5cdb201a83f91e7734eb114 (patch)
tree78356e870d13965baf4872c89a36cb0737856cac
parent7818b054da4b069fdff059ae55c4ab1723590172 (diff)
downloadweston-a40ae68853d1ce18f5cdb201a83f91e7734eb114.tar.gz
meson.build: Fix -Dbackend-default=auto following fbdev deprecation
Signed-off-by: James Le Cuirot <chewi@gentoo.org> (cherry picked from commit 89587db3cba43a057714a4d4e5593ae56939f789)
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 7b80214d..d95f82d5 100644
--- a/meson.build
+++ b/meson.build
@@ -121,7 +121,7 @@ config_h.set10('TEST_GL_RENDERER', get_option('test-gl-renderer'))
backend_default = get_option('backend-default')
if backend_default == 'auto'
- foreach b : [ 'headless', 'fbdev', 'x11', 'wayland', 'drm' ]
+ foreach b : [ 'headless', 'x11', 'wayland', 'drm' ]
if get_option('backend-' + b)
backend_default = b
endif