From 323b27aebd9566d88c7f15b8f6be6a315e9fcd0f Mon Sep 17 00:00:00 2001 From: Ani Date: Tue, 5 Mar 2024 17:54:47 +0000 Subject: [PATCH] appimage: Do not bundle libvulkan.so Causes issues with gamescope, see https://github.com/RPCS3/rpcs3/issues/14917 --- .ci/deploy-linux.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/deploy-linux.sh b/.ci/deploy-linux.sh index f43b0b021ad7..f338ab856fb0 100755 --- a/.ci/deploy-linux.sh +++ b/.ci/deploy-linux.sh @@ -17,6 +17,9 @@ if [ "$DEPLOY_APPIMAGE" = "true" ]; then # Remove libwayland-client because it has platform-dependent exports and breaks other OSes rm -f ./AppDir/usr/lib/libwayland-client.so* + # Remove libvulkan because it causes issues with gamescope + rm -f ./AppDir/usr/lib/libvulkan.so* + # Remove git directory containing local commit history file rm -rf ./AppDir/usr/share/rpcs3/git