From 2e66702e1b4bc6eace13701deff0bf2793397a34 Mon Sep 17 00:00:00 2001 From: Andrei Pavel Date: Mon, 2 Jun 2025 16:00:03 +0300 Subject: [PATCH] [#3867] Hammer: Install texlive-full when preparing Alpine so it can build PDFs --- hammer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hammer.py b/hammer.py index c8d7a9f7b3..0de0a47b07 100755 --- a/hammer.py +++ b/hammer.py @@ -2110,7 +2110,7 @@ def install_packages_local(system, revision, features, check_times, ignore_error deferred_functions.append(install_meson) if 'docs' in features: - packages.extend(['py3-sphinx py3-sphinx_rtd_theme']) + packages.extend(['py3-sphinx', 'py3-sphinx_rtd_theme', 'texlive-full']) if 'netconf' in features: packages.extend(['cmake', 'git', 'pcre2-dev'])