diff options
author | ddh <dianehosfelt@gmail.com> | 2017-01-11 12:07:36 +0000 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-03-31 16:32:21 +0200 |
commit | e527c9a991c00a3d01fcf262b9fee0b5c948436e (patch) | |
tree | 75a909ab4048eb74174454d65758efbb6c63934e /python/servo/package_commands.py | |
parent | f66cae3f96c1b9a835f2d33477593e083395f402 (diff) | |
download | servo-e527c9a991c00a3d01fcf262b9fee0b5c948436e.tar.gz servo-e527c9a991c00a3d01fcf262b9fee0b5c948436e.zip |
Update Hyper and OpenSSL
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r-- | python/servo/package_commands.py | 6 |
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) |