Skip to content

Commit

Permalink
meson: Fix host_os_family value for Android
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Apr 30, 2024
1 parent aab3c7b commit 623ca42
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ endif
api_version = '1.0'

host_os_family = host_machine.system()
if host_os_family == 'android'
host_os_family = 'linux'
endif
host_os = host_machine.subsystem().split('-')[0]
if host_machine.cpu_family() == 'arm'
host_arch = 'arm'
Expand Down

0 comments on commit 623ca42

Please sign in to comment.