aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/package_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r--python/servo/package_commands.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py
index d8c2fbe4924..16c942efe7c 100644
--- a/python/servo/package_commands.py
+++ b/python/servo/package_commands.py
@@ -108,7 +108,7 @@ def copy_dependencies(binary_path, lib_path):
def copy_windows_dependencies(binary_path, destination):
try:
- [shutil.copy(path.join(binary_path, d), destination) for d in ["libeay32md.dll", "ssleay32md.dll"]]
+ [shutil.copy(path.join(binary_path, d), destination) for d in ["libcryptoMD.dll", "libsslMD.dll"]]
except:
deps = [
"libstdc++-6.dll",
@@ -119,8 +119,8 @@ def copy_windows_dependencies(binary_path, destination):
"zlib1.dll",
"libiconv-2.dll",
"libintl-8.dll",
- "libeay32.dll",
- "ssleay32.dll",
+ "libcryptoMD.dll",
+ "libsslMD.dll",
]
for d in deps:
dep_path = path.join("C:\\msys64\\mingw64\\bin", d)