aboutsummaryrefslogtreecommitdiffstats
path: root/pyside_postinstall.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyside_postinstall.py')
-rw-r--r--pyside_postinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyside_postinstall.py b/pyside_postinstall.py
index 1d162ac91..f4dfba1fe 100644
--- a/pyside_postinstall.py
+++ b/pyside_postinstall.py
@@ -272,7 +272,7 @@ Translations = %(pyside_prefix)s/translations
# Install OpenSSL libs
for dll in ["libeay32.dll", "ssleay32.dll"]:
dest_path = os.path.join(exec_prefix, dll)
- src_path = os.path.join(pyside_path, dll)
+ src_path = os.path.join(os.path.join(pyside_path, "openssl"), dll)
if not os.path.exists(dest_path) and os.path.exists(src_path):
shutil.copy(src_path, dest_path)
file_created(dest_path)