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 2dc28fc commit 4c83808
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 @@ -48,6 +48,9 @@ else
build_os_family = build_os
endif
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 4c83808

Please sign in to comment.