From 0be20d08174c20e793c039717ab1f5a27556d0c3 Mon Sep 17 00:00:00 2001 From: Mart Zielman <93423789+ThatFrogDev@users.noreply.github.com> Date: Mon, 11 Mar 2024 16:29:06 +0100 Subject: [PATCH] fix: vulkan dependencies in `script/linux` (#9116) Just a quick pull request and a small fix, someone reported a dependency was erroring for him, so I decided to open a small pull request. On top of that, any `devel` header is not needed because Vulkan is only a runtime dependency. Release Notes: - Fixed names of Vulkan dependencies that didn't exist --- script/linux | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script/linux b/script/linux index 4c091e7d6c..ef67073ac2 100755 --- a/script/linux +++ b/script/linux @@ -14,7 +14,7 @@ if [[ -n $apt ]]; then libxkbcommon-x11-dev libssl-dev libzstd-dev - libvulkan-dev + libvulkan1 ) $maysudo "$apt" install -y "${deps[@]}" exit 0 @@ -31,7 +31,7 @@ if [[ -n $dnf ]]; then libxkbcommon-x11-devel openssl-devel libzstd-devel - libvulkan-devel + vulkan-loader ) $maysudo "$dnf" install -y "${deps[@]}" exit 0 @@ -48,7 +48,7 @@ if [[ -n $zyp ]]; then libxkbcommon-x11-devel openssl-devel libzstd-devel - libvulkan-devel + vulkan-loader ) $maysudo "$zyp" install -y "${deps[@]}" exit 0 @@ -82,7 +82,7 @@ if [[ -n $xbps ]]; then libzstd-devel openssl-devel wayland-devel - libvulkan-devel + vulkan-loader ) $maysudo "$xbps" -Syu "${deps[@]}" exit 0