From 06ee4e845d0df0e6a51b4c0440dd2711f2d77d56 Mon Sep 17 00:00:00 2001 From: tkbits <96506466+2kbits@users.noreply.github.com> Date: Wed, 25 Feb 2026 02:21:46 -0800 Subject: [PATCH] Add missing package to dependency checker for arch linux I added the missing dependency sdl2_ttf for arch linux in the dependency checker as after using the checker I still needed to manually install that to compile. --- .travis/deps.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis/deps.sh b/.travis/deps.sh index a510c526..637ab923 100755 --- a/.travis/deps.sh +++ b/.travis/deps.sh @@ -17,6 +17,7 @@ install_arch_linux() { sudo pacman -S --noconfirm mesa sudo pacman -S --noconfirm libsm sudo pacman -S --noconfirm cmake + sudo pacman -S --noconfirm sdl2_ttf }