diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-07-23 09:00:41 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2019-07-23 09:00:41 -0400 |
commit | 962a2a0afaef6ca209c1b366b7d6cc4664a1df00 (patch) | |
tree | 9e67ba4738b5fcc1bb9755b0052827db0e77de47 /python/servo/build_commands.py | |
parent | fdbb317d7a241928d08e40dfd5b0ae3003ecba51 (diff) | |
download | servo-962a2a0afaef6ca209c1b366b7d6cc4664a1df00.tar.gz servo-962a2a0afaef6ca209c1b366b7d6cc4664a1df00.zip |
Use openssl dependency that works on arm64.
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index 814fa36b76e..4ad405af6a6 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -578,7 +578,7 @@ class MachCommands(CommandBase): call(["editbin", "/nologo", "/subsystem:windows", path.join(servo_exe_dir, "servo.exe")], verbose=verbose) # on msvc, we need to copy in some DLLs in to the servo.exe dir - for ssl_lib in ["libeay32.dll", "ssleay32.dll"]: + for ssl_lib in ["libssl.dll", "libcrypto.dll"]: shutil.copy(path.join(env['OPENSSL_LIB_DIR'], "../bin", ssl_lib), servo_exe_dir) # Search for the generated nspr4.dll |