aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/build_commands.py
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2019-08-15 16:59:07 -0400
committerGitHub <noreply@github.com>2019-08-15 16:59:07 -0400
commit4c7922759fb99918b9995046d6ac22272e96653d (patch)
tree05d8c3cb1d5ce589395dd3474d82cd8b0893e24c /python/servo/build_commands.py
parent91469aa47215c8e1b4e4ae5643ca793b3f65af9b (diff)
downloadservo-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.py2
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)