mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
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
@ -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…
Reference in New Issue
Block a user