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-11 09:16:36 +02:00
parent 556022c4dc
commit 2c0f47e75c
5 changed files with 6 additions and 6 deletions
+1 -1
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