meson: Always use the / operator to join paths

This is the preferred way to do it, but there were a few
instances in which some of the path components had embedded
slashes instead.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
Andrea Bolognani
2021-08-10 16:46:07 +02:00
parent 556022c4dc
commit 2c0f47e75c
5 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ html_xslt_gen = []
foreach name : internals_in_files
html_xslt_gen += {
'name': name,
'source': 'docs/internals' / name + '.html.in',
'source': 'docs' / 'internals' / name + '.html.in',
}
endforeach

View File

@@ -31,7 +31,7 @@ foreach name : docs_kbase_files
html_xslt_gen += {
'name': name,
'file': docs_rst2html5_gen.process(rst_file),
'source': 'docs/kbase' / rst_file,
'source': 'docs' / 'kbase' / rst_file,
}
endforeach

View File

@@ -125,7 +125,7 @@ foreach data : docs_man_files
html_xslt_gen += {
'name': data['name'],
'file': html_in,
'source': 'docs/manpages' / rst_in_file,
'source': 'docs' / 'manpages' / rst_in_file,
}
endforeach