Skip to content

Commit

Permalink
meson: Fix host_os value for Apple Simulator OSes
Browse files Browse the repository at this point in the history
Co-authored-by: Håvard Sørbø <[email protected]>
  • Loading branch information
oleavr and hsorbo committed Apr 30, 2024
1 parent d1f43fd commit c47f3fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ else
build_os_family = build_os
endif
host_os_family = host_machine.system()
host_os = host_machine.subsystem()
host_os = host_machine.subsystem().split('-')[0]
if host_machine.cpu_family() == 'arm'
host_arch = 'arm'
host_abi = 'arm'
Expand Down

0 comments on commit c47f3fa

Please sign in to comment.