Use == to check system instead of a prefix match

This commit is contained in:
sghctoma 2018-09-28 15:35:33 +02:00
parent 1d017c1cc1
commit 65359718c4
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ wlr_deps += [
math, math,
] ]
if host_machine.system().startswith('freebsd') if host_machine.system() == 'freebsd'
override_options = ['b_lundef=false'] override_options = ['b_lundef=false']
else else
override_options = [] override_options = []