diff options
author | sghctoma <sghctoma@gmail.com> | 2018-09-28 15:35:33 +0200 |
---|---|---|
committer | sghctoma <sghctoma@gmail.com> | 2018-09-28 15:35:33 +0200 |
commit | 65359718c49d7d9b0afb97a519c812a998533600 (patch) | |
tree | 99e372ac6b1bc39b07c3b09686bc582238abb68c | |
parent | 1d017c1cc153623e34987920eca90011ae2d9288 (diff) |
Use == to check system instead of a prefix match
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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 = [] |