From 8782f5d9d692b86a71aaaae4fbd83d9de8294780 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Fri, 30 Jun 2023 17:54:13 -0300 Subject: [PATCH] Jenkins: Fix libvulkan symlink location on x86 builds --- .ci/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/build.sh b/.ci/build.sh index a9bddebb9..728c09113 100755 --- a/.ci/build.sh +++ b/.ci/build.sh @@ -998,10 +998,10 @@ else # dependency issues. While Qt expects libvulkan.so, at least Debian only # ships libvulkan.so.1 without a symlink, so make our own as a workaround. # The relative paths prevent appimage-builder from flattening the links. - mkdir -p "archive_tmp/usr/lib/$arch_triplet" + mkdir -p "archive_tmp/usr/lib/$libdir" relroot="../../../../../../../../../../../../../../../../../../../../../../../../../../../../.." ln -s "$relroot/usr/lib/libvulkan.so.1" "archive_tmp/usr/lib/libvulkan.so" - ln -s "$relroot/usr/lib/$arch_triplet/libvulkan.so.1" "archive_tmp/usr/lib/$arch_triplet/libvulkan.so" + ln -s "$relroot/usr/lib/$libdir/libvulkan.so.1" "archive_tmp/usr/lib/$libdir/libvulkan.so" # Archive Discord Game SDK library. 7z e -y -o"archive_tmp/usr/lib" "$discord_zip" "lib/$arch_discord/discord_game_sdk.so"