summaryrefslogtreecommitdiffstats
path: root/tools/copydlldeps.py
diff options
context:
space:
mode:
authorViktor Szakats <vszakats@users.noreply.github.com>2017-03-05 03:41:39 (GMT)
committerViktor Szakats <vszakats@users.noreply.github.com>2017-03-10 13:59:00 (GMT)
commit45d34aaac7be400a5befb5a7a67d3b7b0072bc92 (patch)
tree7e0c7bf6f06d4cf82695aa4add7c6beff849216f /tools/copydlldeps.py
parent700f5c841fc1aa2b7bc15c317fd8f13c7e491e74 (diff)
downloadmxe-45d34aaac7be400a5befb5a7a67d3b7b0072bc92.zip
mxe-45d34aaac7be400a5befb5a7a67d3b7b0072bc92.tar.gz
mxe-45d34aaac7be400a5befb5a7a67d3b7b0072bc92.tar.bz2
more URL updates
Diffstat (limited to 'tools/copydlldeps.py')
-rwxr-xr-xtools/copydlldeps.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/copydlldeps.py b/tools/copydlldeps.py
index 17c0677..1f350b9 100755
--- a/tools/copydlldeps.py
+++ b/tools/copydlldeps.py
@@ -138,7 +138,7 @@ if __name__ == "__main__":
not_found_dlls = set()
# Create a list of all available .dll files in the libdir directories
- # Flattening list: http://stackoverflow.com/questions/952914
+ # Flattening list: https://stackoverflow.com/questions/952914
for libdir in [item for sublist in args.libdirs for item in sublist]:
for dll_filename in os.listdir(libdir):
dll_filename_full = os.path.join(libdir, dll_filename)
@@ -147,7 +147,7 @@ if __name__ == "__main__":
# Create a list of initial dependencies (dlls_to_copy) and already copied
# DLLs (copied_dlls) from the checkdir arguments.
- # Flattening list: http://stackoverflow.com/questions/952914
+ # Flattening list: https://stackoverflow.com/questions/952914
for checkdir in [item for sublist in args.checkdirs for item in sublist]:
for pe_filename in os.listdir(checkdir):
pe_filename_full = os.path.join(checkdir, pe_filename)