diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2024-01-04 11:31:11 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2024-01-04 15:02:28 +0100 |
commit | 25cb4c1d53bcd6ed3182aa98684a88d98cc73299 (patch) | |
tree | d1074216c92ca66de11668a275ef957d350958be /tools | |
parent | Merge pull request #30736 from YHNdnzj/loginctl-self (diff) | |
download | systemd-25cb4c1d53bcd6ed3182aa98684a88d98cc73299.tar.xz systemd-25cb4c1d53bcd6ed3182aa98684a88d98cc73299.zip |
update-man-rules: skip over standard-conf.xml
bc6fdcbf5d switched its doctype to refentry, so the script started
picking it up and complaining that it's missing required stuff. Since
this file is only included from other man pages, let's skip it when
putting together a list of valid targets.
Resolves: #30715
Follow-up for: bc6fdcbf5d
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/update-man-rules.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/update-man-rules.py b/tools/update-man-rules.py index 1c2c9a8f65..3f10a29c47 100755 --- a/tools/update-man-rules.py +++ b/tools/update-man-rules.py @@ -85,6 +85,7 @@ def main(): pages = glob.glob(source_glob) pages = (p for p in pages if Path(p).name not in { + 'standard-conf.xml', 'systemd.directives.xml', 'systemd.index.xml', 'directives-template.xml'}) |