Remove remaining tabs from meson.build files

No changes, just tab-to-space replacement and a little bit of manual
twiddling.
This commit is contained in:
Peter Hutterer 2021-09-30 10:01:43 +10:00
parent fe79e684b7
commit abd5f9fbe8
7 changed files with 92 additions and 86 deletions

View file

@ -27,13 +27,13 @@ endif
foreach m : manpages
file = m.split('.rst.in').get(0)
rst = configure_file(input : m,
output : file + '.rst',
configuration : manpage_conf)
output : file + '.rst',
configuration : manpage_conf)
section = file.split('.').get(-1)
custom_target(file + '.target',
output : file,
input : rst,
command : [rst2man, '@INPUT@', '@OUTPUT@'],
install : true,
install_dir : get_option('mandir') / 'man' + section)
output : file,
input : rst,
command : [rst2man, '@INPUT@', '@OUTPUT@'],
install : true,
install_dir : get_option('mandir') / 'man' + section)
endforeach