From 96852ca6fbcae6e7ba38e8fa1b80510f0e2c6671 Mon Sep 17 00:00:00 2001 From: bitraid Date: Tue, 31 Dec 2019 18:12:02 +0200 Subject: [PATCH] Fix wlroots version dependency --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 230d6b1ed..c0c5f5f0f 100644 --- a/meson.build +++ b/meson.build @@ -58,7 +58,7 @@ math = cc.find_library('m') rt = cc.find_library('rt') # Try first to find wlroots as a subproject, then as a system dependency -wlroots_version = ['>=0.8.1', '<0.9.0'] +wlroots_version = ['>=0.8.1', '<=0.9.0'] wlroots_proj = subproject( 'wlroots', default_options: ['examples=false'],