From: Frantisek Sumsal Date: Thu, 4 Jan 2024 10:31:11 +0000 (+0100) Subject: update-man-rules: skip over standard-conf.xml X-Git-Tag: v256-rc1~1308 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=25cb4c1d53bcd6ed3182aa98684a88d98cc73299;p=thirdparty%2Fsystemd.git 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 --- diff --git a/tools/update-man-rules.py b/tools/update-man-rules.py index 1c2c9a8f659..3f10a29c473 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'})