Skip to content

Commit

Permalink
AP_UROS: update wscript for ubuntu x86_64 and aarch64
Browse files Browse the repository at this point in the history
Signed-off-by: Rhys Mainwaring <[email protected]>
  • Loading branch information
srmainwaring committed Oct 4, 2023
1 parent 0f79d0a commit 7b6b189
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libraries/AP_UROS/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ def configure(cfg):
elif host_machine == 'arm64':
distro = 'uros-macos-13.4-arm64'
elif host_system == 'Linux':
if host_machine == 'amd64':
distro = 'uros-ubuntu-22-amd64'
elif host_machine == 'arm64':
distro = 'uros-ubuntu-22-arm64'
if host_machine == 'x86_64':
distro = 'uros-ubuntu-22-x86_64'
elif host_machine == 'aarch64':
distro = 'uros-ubuntu-22-aarch64'
else:
print('Cannot configure AP_UROS. Unsupported host: {}'.format(host_system))
return
Expand Down

0 comments on commit 7b6b189

Please sign in to comment.