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 f9d410f commit aab3c7b
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 @@ -23,7 +23,7 @@ endif
api_version = '1.0'

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 aab3c7b

Please sign in to comment.