From a25edcc5a894c4fea13e4684329aff84821cc5e9 Mon Sep 17 00:00:00 2001 From: Owen Law <81528246+someone13574@users.noreply.github.com> Date: Tue, 5 Mar 2024 12:16:08 -0500 Subject: [PATCH] Add libxcb-devel build dep to void linux script (#8872) Added missing libxcb-devel to build dependency script for void-linux. --- script/linux | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/script/linux b/script/linux index a35918ce73..9f4e0402c2 100755 --- a/script/linux +++ b/script/linux @@ -74,10 +74,11 @@ if [[ -n $xbps ]]; then deps=( alsa-lib-devel fontconfig-devel - wayland-devel + libxcb-devel libxkbcommon-devel - openssl-devel libzstd-devel + openssl-devel + wayland-devel ) $maysudo "$xbps" -Syu "${deps[@]}" exit 0