1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-01-09 01:18:00 +03:00

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

View File

@ -47,7 +47,7 @@ if conf.has('WITH_LIBVIRTD') and conf.has('WITH_APPARMOR')
conf_inc_dir,
hypervisor_inc_dir,
include_directories('.'),
include_directories('../storage_file'),
include_directories('..' / 'storage_file'),
],
}
endif

View File

@ -79,7 +79,7 @@ if conf.has('WITH_STORAGE')
],
include_directories: [
conf_inc_dir,
include_directories('../storage_file'),
include_directories('..' / 'storage_file'),
],
)
@ -163,7 +163,7 @@ if conf.has('WITH_STORAGE_GLUSTER')
glusterfs_dep,
],
'include': [
include_directories('../storage_file'),
include_directories('..' / 'storage_file'),
],
'install_dir': storage_backend_install_dir,
}