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
This commit is contained in:
parent
a04932c4eb
commit
0be20d0817
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue