meson: Cleanup darwin system check

'ios' is not a meson host manchine system type.
This commit is contained in:
Arjan Molenaar
2024-10-30 11:26:00 +01:00
parent 5b78ee2227
commit 0b9d1fc27c

View File

@@ -99,7 +99,7 @@ gtk_api_version = '4.0'
module_suffix = []
# GModule requires file extension to be .so, not .dylib on Mac.
# https://gitlab.gnome.org/GNOME/glib/issues/520
if ['darwin', 'ios'].contains(host_machine.system())
if host_machine.system() == 'darwin'
module_suffix = 'so'
endif