aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/package_commands.py
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2017-04-14 23:56:59 -0400
committerAneesh Agrawal <aneeshusa@gmail.com>2017-04-16 22:12:17 -0400
commit022f0aa34a6b8688e816ff0c3ecbf970fc210cf7 (patch)
treeb7ae7a427414d500a80e38f41792bbab0c34e5e2 /python/servo/package_commands.py
parentff74faee109fc4977865512aa5657166667da6b4 (diff)
downloadservo-022f0aa34a6b8688e816ff0c3ecbf970fc210cf7.tar.gz
servo-022f0aa34a6b8688e816ff0c3ecbf970fc210cf7.zip
Remove more deprecated Windows GNU code/docs
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r--python/servo/package_commands.py25
1 files changed, 6 insertions, 19 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py
index c3e29829e45..2551844e4b5 100644
--- a/python/servo/package_commands.py
+++ b/python/servo/package_commands.py
@@ -107,25 +107,12 @@ 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 ["libcryptoMD.dll", "libsslMD.dll"]]
- except:
- deps = [
- "libstdc++-6.dll",
- "libwinpthread-1.dll",
- "libbz2-1.dll",
- "libgcc_s_seh-1.dll",
- "libexpat-1.dll",
- "zlib1.dll",
- "libiconv-2.dll",
- "libintl-8.dll",
- "libcryptoMD.dll",
- "libsslMD.dll",
- ]
- for d in deps:
- dep_path = path.join("C:\\msys64\\mingw64\\bin", d)
- if path.exists(dep_path):
- shutil.copy(dep_path, path.join(destination, d))
+ deps = [
+ "libcryptoMD.dll",
+ "libsslMD.dll",
+ ]
+ for d in deps:
+ shutil.copy(path.join(binary_path, d), destination)
def change_prefs(resources_path, platform):