From fe7536dd2a0a658cb718556b3d8c4413ae3013af Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 13 Jan 2025 21:48:00 +0530 Subject: [PATCH] And now Ubuntu needs freetype-dev explicitly installed for some reason --- setup/unix-ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/unix-ci.py b/setup/unix-ci.py index 9c041007a0..31ef31ac56 100644 --- a/setup/unix-ci.py +++ b/setup/unix-ci.py @@ -115,7 +115,7 @@ def install_linux_deps(): run('sudo', 'apt-get', 'update', '-y') # run('sudo', 'apt-get', 'upgrade', '-y') run('sudo', 'apt-get', 'install', '-y', - 'gettext', 'libgl1-mesa-dev', 'libxkbcommon-dev', 'libxkbcommon-x11-dev', 'pulseaudio', 'libasound2t64', 'libflite1', 'libspeechd2') + 'gettext', 'libgl1-mesa-dev', 'libxkbcommon-dev', 'libxkbcommon-x11-dev', 'libfreetype-dev', 'pulseaudio', 'libasound2t64', 'libflite1', 'libspeechd2') def get_tx():