diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-08-16 16:59:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-16 16:59:47 -0400 |
commit | ec2ca08e8e047ba7a23d31d8ad3c37d502efb76a (patch) | |
tree | 983a84125d865660ff2aa2f464bf6add1893a88e /python | |
parent | 6a637ceffbe34474ea4b657b08acc0966dc8a088 (diff) | |
parent | 4c7922759fb99918b9995046d6ac22272e96653d (diff) | |
download | servo-ec2ca08e8e047ba7a23d31d8ad3c37d502efb76a.tar.gz servo-ec2ca08e8e047ba7a23d31d8ad3c37d502efb76a.zip |
Auto merge of #23977 - servo:jdm-patch-46, r=Manishearth
Use correct openxr loader path for x64
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23977)
<!-- Reviewable:end -->
Diffstat (limited to 'python')
-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) |