From 5595820b3054b2511d039151f0559505c78cec7c Mon Sep 17 00:00:00 2001 From: Pandu Getj Date: Thu, 22 Jul 2021 12:57:42 +0000 Subject: Fiixed: On Win32 platforms openssl dll's not present in binary packages anymore --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a1d58f2..378076a 100644 --- a/setup.py +++ b/setup.py @@ -256,7 +256,7 @@ class _M2CryptoBuildExt(build_ext.build_ext): dll_name = '{0}{1}.dll'.format(libname, ver_part) dll_path = os.path.join(search_path, dll_name) if os.path.exists(dll_path): - shutil.copy(dll_path, 'M2Crypto') + shutil.copy(dll_path, 'src/M2Crypto') libs.remove(libname) break if libs: -- cgit v1.2.1