From 25cb4c1d53bcd6ed3182aa98684a88d98cc73299 Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Thu, 4 Jan 2024 11:31:11 +0100 Subject: [PATCH] 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 --- tools/update-man-rules.py | 1 + 1 file changed, 1 insertion(+) 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'})