aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2019-10-03 00:52:27 -0400
committerGitHub <noreply@github.com>2019-10-03 00:52:27 -0400
commit6535899d54f2e6c562b78991f72c61a2b078027b (patch)
tree3edd083ce643c4017f14407a203307539a172190 /python/servo/command_base.py
parentf54c15bc48feae267a5ef8f097e168cf7bbdf44e (diff)
downloadservo-6535899d54f2e6c562b78991f72c61a2b078027b.tar.gz
servo-6535899d54f2e6c562b78991f72c61a2b078027b.zip
Use correct OpenSSL arch in UWP builds.
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 853c879d9af..b20a8403427 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -642,7 +642,7 @@ install them, let us know by filing a bug!")
target_arch = vcpkg_arch[arch]
if uwp:
target_arch += "-uwp"
- openssl_base_dir = path.join(self.msvc_package_dir("openssl"), vcpkg_arch[arch])
+ openssl_base_dir = path.join(self.msvc_package_dir("openssl"), target_arch)
# Link openssl
env["OPENSSL_INCLUDE_DIR"] = path.join(openssl_base_dir, "include")