From 2cead675bbb072b7072a122b9497a930de5cab59 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 18 May 2024 01:38:40 +1000 Subject: [PATCH] Revert "CI/AppImage: Don't bundle libssl/libcrypto" This reverts commit 21c46b778e0d2b8632a906c795a7ad5705031b9a. --- .github/workflows/scripts/linux/appimage-qt.sh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/scripts/linux/appimage-qt.sh b/.github/workflows/scripts/linux/appimage-qt.sh index 2a1cc14021..8fc4c14340 100755 --- a/.github/workflows/scripts/linux/appimage-qt.sh +++ b/.github/workflows/scripts/linux/appimage-qt.sh @@ -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..."