diff options
| author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2025-08-12 17:52:26 +0200 |
|---|---|---|
| committer | Jonathan Corbet <corbet@lwn.net> | 2025-08-13 10:19:16 -0600 |
| commit | c5ffae0fa965884d09458002e3d990c039602809 (patch) | |
| tree | 022a66948ac4181c6376640a1ab0ef0fdfc356e7 /scripts/sphinx-pre-install.py | |
| parent | scripts: sphinx-pre-install: Address issues with OpenSUSE Leap 15.x (diff) | |
| download | linux-c5ffae0fa965884d09458002e3d990c039602809.tar.gz linux-c5ffae0fa965884d09458002e3d990c039602809.zip | |
scripts: sphinx-pre-install: fix opensuse Leap hint for PyYAML
On Leap, the name of the package is python311-PyYAML.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/0266c5e28e136c62de33d2d7f7d5e69b273e0d01.1754992972.git.mchehab+huawei@kernel.org
Diffstat (limited to '')
| -rwxr-xr-x | scripts/sphinx-pre-install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/sphinx-pre-install.py b/scripts/sphinx-pre-install.py index eca42d90ed01..65438c198674 100755 --- a/scripts/sphinx-pre-install.py +++ b/scripts/sphinx-pre-install.py @@ -569,7 +569,7 @@ class SphinxDependencyChecker: progs.update({ "python-sphinx": "python311-Sphinx", "virtualenv": "python311-virtualenv", - "yaml": "python311-pyyaml", + "yaml": "python311-PyYAML", }) # FIXME: add support for installing CJK fonts |
