Use == to check system instead of a prefix match

master
sghctoma 6 years ago
parent 1d017c1cc1
commit 65359718c4

@ -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 = []

Loading…
Cancel
Save