From 6535899d54f2e6c562b78991f72c61a2b078027b Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Thu, 3 Oct 2019 00:52:27 -0400 Subject: [PATCH] Use correct OpenSSL arch in UWP builds. --- python/servo/command_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")