diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-08-15 16:59:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-15 16:59:07 -0400 |
commit | 4c7922759fb99918b9995046d6ac22272e96653d (patch) | |
tree | 05d8c3cb1d5ce589395dd3474d82cd8b0893e24c /python/servo/build_commands.py | |
parent | 91469aa47215c8e1b4e4ae5643ca793b3f65af9b (diff) | |
download | servo-4c7922759fb99918b9995046d6ac22272e96653d.tar.gz servo-4c7922759fb99918b9995046d6ac22272e96653d.zip |
Use correct openxr loader path for x64.
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index 76d75a0673b..dbd5e2d905c 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -756,7 +756,7 @@ class MachCommands(CommandBase): target_arch = target.split('-')[0] if target_arch == "aarch64": arch = "arm64" - elif target_arch == "x64": + elif target_arch == "x86_64": arch = "x64" else: print("ERROR: We do not have openxr_loader DLLs for %s" % target_arch) |