From dbf804cfcb6ce50e36a5ff0f5dcd06c35cac67e3 Mon Sep 17 00:00:00 2001 From: Christoph Haag Date: Tue, 2 Mar 2021 00:34:17 +0100 Subject: [PATCH] build/meson: Make it possible to disable daydream&arduino --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index fe2c915be..66fd77a2a 100644 --- a/meson.build +++ b/meson.build @@ -211,11 +211,11 @@ if survive.found() and ('auto' in drivers and 'survive' not in drivers) endif if not get_option('dbus').disabled() and dbus.found() - if 'daydream' not in drivers + if 'auto' in drivers and 'daydream' not in drivers drivers += ['daydream'] endif - if 'arduino' not in drivers + if 'auto' in drivers and 'arduino' not in drivers drivers += ['arduino'] endif endif