Revert "CI/AppImage: Don't bundle libssl/libcrypto"

This reverts commit 21c46b778e.
This commit is contained in:
Stenzek 2024-05-18 01:38:40 +10:00 committed by Connor McLaughlin
parent a6f7159537
commit 2cead675bb
1 changed files with 0 additions and 11 deletions

View File

@ -41,11 +41,6 @@ BINARY=pcsx2-qt
APPDIRNAME=PCSX2.AppDir
STRIP=strip
declare -a EXCLUDE_LIBS=(
'libcrypto.so*'
'libssl.so*'
)
declare -a MANUAL_QT_LIBS=(
"libQt6WaylandEglClientHwIntegration.so.6"
)
@ -81,11 +76,6 @@ fi
OUTDIR=$(realpath "./$APPDIRNAME")
rm -fr "$OUTDIR"
declare -a EXCLUDE_LIBS_ARGS=()
for lib in "${EXCLUDE_LIBS[@]}"; do
EXCLUDE_LIBS_ARGS+=("--exclude-library=$lib")
done
# Why the nastyness? linuxdeploy strips our main binary, and there's no option to turn it off.
# It also doesn't strip the Qt libs. We can't strip them after running linuxdeploy, because
# patchelf corrupts the libraries (but they still work), but patchelf+strip makes them crash
@ -113,7 +103,6 @@ DEPLOY_PLATFORM_THEMES="1" \
QMAKE="$DEPSDIR/bin/qmake" \
NO_STRIP="1" \
$LINUXDEPLOY --plugin qt --appdir="$OUTDIR" --executable="$BUILDDIR/bin/pcsx2-qt" \
"${EXCLUDE_LIBS_ARGS[@]}" \
--desktop-file="net.pcsx2.PCSX2.desktop" --icon-file="PCSX2.png"
echo "Copying resources into AppDir..."