From 65359718c49d7d9b0afb97a519c812a998533600 Mon Sep 17 00:00:00 2001 From: sghctoma Date: Fri, 28 Sep 2018 15:35:33 +0200 Subject: [PATCH] Use == to check system instead of a prefix match --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 38a7364f..9bd71191 100644 --- a/meson.build +++ b/meson.build @@ -111,7 +111,7 @@ wlr_deps += [ math, ] -if host_machine.system().startswith('freebsd') +if host_machine.system() == 'freebsd' override_options = ['b_lundef=false'] else override_options = []