From 42b0a9a13d414dd5b3250d3ea06799eb707d0728 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sat, 30 Aug 2025 21:32:38 +0500 Subject: [PATCH] scripts: gha: copy SDL library with all symlinks to it --- scripts/gha/build_linux.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/gha/build_linux.sh b/scripts/gha/build_linux.sh index 000dff14..3f87244e 100755 --- a/scripts/gha/build_linux.sh +++ b/scripts/gha/build_linux.sh @@ -79,7 +79,9 @@ deploy_engine() { cd "$BUILDDIR" || die ./waf install --destdir="$APPDIR" || die - cp -av SDL2_linux/lib/libSDL2-2.0.so.0 "$APPDIR/" + + cp -av SDL2_linux/lib/libSDL2.so SDL2_linux/lib/libSDL2-* "$APPDIR/" + if [ "$GH_CPU_ARCH" = "i386" ]; then cp -av 3rdparty/vgui_support/vgui-dev/lib/vgui.so "$APPDIR/" fi