Skip to content

Commit de12746

Browse files
man: rename rst2man.py -> rst2man
sphinx_rtd_theme 3.0.0 added "support for docutils >0.18, <0.22." [1]. Prior releases limited docutils to <0.21. docutils 0.21 added "entry points (without the .py extension) instead of installing the rst2*.py front end tools in the binary PATH." [2] So change the rst2man call from rst2man.py to rst2man in the man Makefile. [1] https://sphinx-rtd-theme.readthedocs.io/en/stable/changelog.html [2] https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-21-2024-04-09 Signed-off-by: Bastian Krause <[email protected]>
1 parent b120654 commit de12746

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

man/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PAGES := labgrid-client.1 labgrid-coordinator.1 labgrid-exporter.1 labgrid-devic
22
COMPRESSED := labgrid-client.1.gz labgrid-coordinator.1.gz labgrid-exporter.1.gz labgrid-device-config.5.gz labgrid-pytest.7.gz labgrid-suggest.1.gz
33

44
%.1 %.5 %.7: %.rst
5-
rst2man.py $< >$@.tmp
5+
rst2man $< >$@.tmp
66
mv -f $@.tmp $@
77

88
%.gz : %

0 commit comments

Comments
 (0)