From 203524c2384b31c44fbaff16d7349a24fa5b2061 Mon Sep 17 00:00:00 2001 From: Philipp Wolfer Date: Thu, 31 Aug 2023 08:30:14 +0200 Subject: [PATCH] PICARD-2736: Fix Windows system wide libssl conflicting with bundled libssl Removed an old workaround that no longer applies for current PyQt5 and/or PyInstaller. The OpenSSL DLLs should be kept in the main install folder in order to be prioritized over system libs. --- scripts/package/win-common.ps1 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/package/win-common.ps1 b/scripts/package/win-common.ps1 index 570b6d2ec..d6fb096d0 100644 --- a/scripts/package/win-common.ps1 +++ b/scripts/package/win-common.ps1 @@ -36,8 +36,4 @@ Function FinalizePackage { CodeSignBinary (Join-Path $Path picard.exe) CodeSignBinary (Join-Path $Path fpcalc.exe) CodeSignBinary (Join-Path $Path discid.dll) - - # Delete unused files - Remove-Item -Path (Join-Path $Path libcrypto-1_1.dll) - Remove-Item -Path (Join-Path $Path libssl-1_1.dll) }