]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
update-man-rules: skip over standard-conf.xml
authorFrantisek Sumsal <frantisek@sumsal.cz>
Thu, 4 Jan 2024 10:31:11 +0000 (11:31 +0100)
committerLennart Poettering <lennart@poettering.net>
Thu, 4 Jan 2024 14:02:28 +0000 (15:02 +0100)
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

index 1c2c9a8f65924effdbf8bc9b39df1add131eb8fb..3f10a29c473897cffa087d2cf98467ce275f590a 100755 (executable)
@@ -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'})