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
This commit is contained in:
Frantisek Sumsal 2024-01-04 11:31:11 +01:00 committed by Lennart Poettering
parent 7b223bdb6b
commit 25cb4c1d53

View File

@ -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'})