Skip to content

Commit

Permalink
Auto merge of #23977 - servo:jdm-patch-46, r=Manishearth
Browse files Browse the repository at this point in the history
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 -->
  • Loading branch information
bors-servo committed Aug 16, 2019
2 parents 6a637ce + 4c79227 commit 619c763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/servo/build_commands.py
Expand Up @@ -756,7 +756,7 @@ def package_openxr_dlls(self, env, servo_exe_dir, target):
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)
Expand Down

0 comments on commit 619c763

Please sign in to comment.