diff options
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index d7a48a493ff..f434ea4222e 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -282,7 +282,7 @@ class MachCommands(CommandBase): append_to_path_env( path.join( os.getcwd(), "support", "hololens", "packages", - "ANGLE.WindowsStore.2.1.13", "bin", "UAP", "x64" + "ANGLE.WindowsStore.Servo.2.1.13", "bin", "UAP", "x64" ), env, "LIB" @@ -611,7 +611,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 |